Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(834)

Unified Diff: runtime/vm/regexp_assembler_ir.cc

Issue 2419013004: Add local variable declaration token position to service protocol (Closed)
Patch Set: ... Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « runtime/vm/raw_object_snapshot.cc ('k') | runtime/vm/scopes.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/regexp_assembler_ir.cc
diff --git a/runtime/vm/regexp_assembler_ir.cc b/runtime/vm/regexp_assembler_ir.cc
index aac090e27d315d93808808cedc53a3a66fcdc437..24a1468ac25c19126fee77abb45c494ba5df8fd3 100644
--- a/runtime/vm/regexp_assembler_ir.cc
+++ b/runtime/vm/regexp_assembler_ir.cc
@@ -385,7 +385,10 @@ DEFINE_RAW_LEAF_RUNTIME_ENTRY(
LocalVariable* IRRegExpMacroAssembler::Parameter(const String& name,
intptr_t index) const {
LocalVariable* local = new(Z) LocalVariable(
- TokenPosition::kNoSource, name, Object::dynamic_type());
+ TokenPosition::kNoSource,
+ TokenPosition::kNoSource,
+ name,
+ Object::dynamic_type());
intptr_t param_frame_index = kParamEndSlotFromFp + kParamCount - index;
local->set_index(param_frame_index);
@@ -396,7 +399,10 @@ LocalVariable* IRRegExpMacroAssembler::Parameter(const String& name,
LocalVariable* IRRegExpMacroAssembler::Local(const String& name) {
LocalVariable* local = new(Z) LocalVariable(
- TokenPosition::kNoSource, name, Object::dynamic_type());
+ TokenPosition::kNoSource,
+ TokenPosition::kNoSource,
+ name,
+ Object::dynamic_type());
local->set_index(GetNextLocalIndex());
return local;
« no previous file with comments | « runtime/vm/raw_object_snapshot.cc ('k') | runtime/vm/scopes.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698