| Index: runtime/vm/intermediate_language.h
|
| diff --git a/runtime/vm/intermediate_language.h b/runtime/vm/intermediate_language.h
|
| index 43259525404313dd9dc516b2faa3a75464c6894b..32f546399ce0ea7ac51c89990ee7bbfdc697486a 100644
|
| --- a/runtime/vm/intermediate_language.h
|
| +++ b/runtime/vm/intermediate_language.h
|
| @@ -3800,10 +3800,8 @@ class StringToCharCodeInstr : public TemplateDefinition<1> {
|
|
|
| class StringInterpolateInstr : public TemplateDefinition<1> {
|
| public:
|
| - StringInterpolateInstr(Value* value, intptr_t token_pos, bool is_singleton)
|
| - : token_pos_(token_pos),
|
| - function_(Function::Handle()),
|
| - is_singleton_(is_singleton) {
|
| + StringInterpolateInstr(Value* value, intptr_t token_pos)
|
| + : token_pos_(token_pos), function_(Function::Handle()) {
|
| SetInputAt(0, value);
|
| }
|
|
|
| @@ -3825,7 +3823,6 @@ class StringInterpolateInstr : public TemplateDefinition<1> {
|
| private:
|
| const intptr_t token_pos_;
|
| Function& function_;
|
| - const bool is_singleton_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(StringInterpolateInstr);
|
| };
|
|
|