Home | History | Annotate | Download | only in debug

Lines Matching refs:Handle

47   ScopeIterator(Isolate* isolate, Handle<JSFunction> function);
48 ScopeIterator(Isolate* isolate, Handle<JSGeneratorObject> generator);
67 bool SetVariableValue(Handle<String> variable_name, Handle<Object> new_value);
69 Handle<ScopeInfo> CurrentScopeInfo();
73 Handle<Context> CurrentContext();
76 Handle<StringSet> GetNonLocals();
85 ExtendedScopeInfo(Handle<ScopeInfo> info, int start, int end)
87 explicit ExtendedScopeInfo(Handle<ScopeInfo> info)
89 Handle<ScopeInfo> scope_info;
97 Handle<Context> context_;
99 Handle<StringSet> non_locals_;
106 inline Handle<JSFunction> GetFunction() {
119 Handle<JSObject> MaterializeClosure();
120 Handle<JSObject> MaterializeCatchScope();
121 Handle<JSObject> MaterializeInnerScope();
122 Handle<JSObject> WithContextExtension();
124 bool SetLocalVariableValue(Handle<String> variable_name,
125 Handle<Object> new_value);
126 bool SetInnerScopeVariableValue(Handle<String> variable_name,
127 Handle<Object> new_value);
128 bool SetClosureVariableValue(Handle<String> variable_name,
129 Handle<Object> new_value);
130 bool SetScriptVariableValue(Handle<String> variable_name,
131 Handle<Object> new_value);
132 bool SetCatchVariableValue(Handle<String> variable_name,
133 Handle<Object> new_value);
136 bool SetParameterValue(Handle<ScopeInfo> scope_info, JavaScriptFrame* frame,
137 Handle<String> parameter_name,
138 Handle<Object> new_value);
139 bool SetStackVariableValue(Handle<ScopeInfo> scope_info,
140 Handle<String> variable_name,
141 Handle<Object> new_value);
142 bool SetContextVariableValue(Handle<ScopeInfo> scope_info,
143 Handle<Context> context,
144 Handle<String> variable_name,
145 Handle<Object> new_value);
147 void CopyContextLocalsToScopeObject(Handle<ScopeInfo> scope_info,
148 Handle<Context> context,
149 Handle<JSObject> scope_object);
150 void CopyModuleVarsToScopeObject(Handle<ScopeInfo> scope_info,
151 Handle<Context> context,
152 Handle<JSObject> scope_object);
153 void CopyContextExtensionToScopeObject(Handle<Context> context,
154 Handle<JSObject> scope_object,