Chromium Code Reviews| Index: src/objects.h |
| diff --git a/src/objects.h b/src/objects.h |
| index b9366c18acbac87f4a19fb76d7b2e5197129b304..aef9185ff998d52e3b7d636098adf850c4f07d20 100644 |
| --- a/src/objects.h |
| +++ b/src/objects.h |
| @@ -6733,6 +6733,7 @@ class Module : public Struct { |
| // Implementation of spec operation ModuleEvaluation. |
| static MUST_USE_RESULT MaybeHandle<Object> Evaluate(Handle<Module> module); |
| + static Cell* GetCell(Module* module, int cell_index); |
|
Michael Starzinger
2017/04/27 09:51:02
nit: Since this is an unhandlified method, I would
|
| static Handle<Object> LoadVariable(Handle<Module> module, int cell_index); |
| static void StoreVariable(Handle<Module> module, int cell_index, |
| Handle<Object> value); |