summaryrefslogtreecommitdiff
path: root/deps/v8/src/accessors.h
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/src/accessors.h')
-rw-r--r--deps/v8/src/accessors.h16
1 files changed, 2 insertions, 14 deletions
diff --git a/deps/v8/src/accessors.h b/deps/v8/src/accessors.h
index 4a1a67e93e..301f830a9a 100644
--- a/deps/v8/src/accessors.h
+++ b/deps/v8/src/accessors.h
@@ -33,19 +33,6 @@ class JavaScriptFrame;
V(function_name, FunctionName) \
V(function_length, FunctionLength) \
V(function_prototype, FunctionPrototype) \
- V(script_column_offset, ScriptColumnOffset) \
- V(script_compilation_type, ScriptCompilationType) \
- V(script_context_data, ScriptContextData) \
- V(script_eval_from_script, ScriptEvalFromScript) \
- V(script_eval_from_script_position, ScriptEvalFromScriptPosition) \
- V(script_eval_from_function_name, ScriptEvalFromFunctionName) \
- V(script_id, ScriptId) \
- V(script_line_offset, ScriptLineOffset) \
- V(script_name, ScriptName) \
- V(script_source, ScriptSource) \
- V(script_type, ScriptType) \
- V(script_source_url, ScriptSourceUrl) \
- V(script_source_mapping_url, ScriptSourceMappingUrl) \
V(string_length, StringLength)
#define SIDE_EFFECT_FREE_ACCESSOR_INFO_LIST(V) \
@@ -106,7 +93,8 @@ class Accessors : public AllStatic {
// Returns true for properties that are accessors to object fields.
// If true, the matching FieldIndex is returned through |field_index|.
- static bool IsJSObjectFieldAccessor(Handle<Map> map, Handle<Name> name,
+ static bool IsJSObjectFieldAccessor(Isolate* isolate, Handle<Map> map,
+ Handle<Name> name,
FieldIndex* field_index);
static MaybeHandle<Object> ReplaceAccessorWithDataProperty(