| Index: vm/scopes.cc
|
| ===================================================================
|
| --- vm/scopes.cc (revision 16583)
|
| +++ vm/scopes.cc (working copy)
|
| @@ -259,7 +259,7 @@
|
| desc.info.index = var->index();
|
| vars->Add(desc);
|
| } else if (var->name().Equals(
|
| - Symbols::Name(Symbols::kSavedEntryContextVar))) {
|
| + Symbols::Name(Symbols::kSavedEntryContextVarId))) {
|
| // This is the local variable in which the function saves the
|
| // caller's chain of closure contexts (caller's CTX register).
|
| VarDesc desc;
|
| @@ -526,7 +526,7 @@
|
|
|
| // Create a descriptor for 'this' variable.
|
| context_scope.SetTokenIndexAt(0, func.token_pos());
|
| - context_scope.SetNameAt(0, Symbols::ThisHandle());
|
| + context_scope.SetNameAt(0, Symbols::This());
|
| context_scope.SetIsFinalAt(0, true);
|
| context_scope.SetIsConstAt(0, false);
|
| const AbstractType& type = AbstractType::Handle(func.ParameterTypeAt(0));
|
|
|