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

Side by Side Diff: src/accessors.h

Issue 1986173002: Refactor script position calculation (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix DCHECK logic Created 4 years, 7 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 unified diff | Download patch
« no previous file with comments | « no previous file | src/accessors.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef V8_ACCESSORS_H_ 5 #ifndef V8_ACCESSORS_H_
6 #define V8_ACCESSORS_H_ 6 #define V8_ACCESSORS_H_
7 7
8 #include "include/v8.h" 8 #include "include/v8.h"
9 #include "src/allocation.h" 9 #include "src/allocation.h"
10 #include "src/globals.h" 10 #include "src/globals.h"
(...skipping 18 matching lines...) Expand all
29 V(FunctionName) \ 29 V(FunctionName) \
30 V(FunctionLength) \ 30 V(FunctionLength) \
31 V(FunctionPrototype) \ 31 V(FunctionPrototype) \
32 V(ScriptColumnOffset) \ 32 V(ScriptColumnOffset) \
33 V(ScriptCompilationType) \ 33 V(ScriptCompilationType) \
34 V(ScriptContextData) \ 34 V(ScriptContextData) \
35 V(ScriptEvalFromScript) \ 35 V(ScriptEvalFromScript) \
36 V(ScriptEvalFromScriptPosition) \ 36 V(ScriptEvalFromScriptPosition) \
37 V(ScriptEvalFromFunctionName) \ 37 V(ScriptEvalFromFunctionName) \
38 V(ScriptId) \ 38 V(ScriptId) \
39 V(ScriptLineEnds) \
40 V(ScriptLineOffset) \ 39 V(ScriptLineOffset) \
41 V(ScriptName) \ 40 V(ScriptName) \
42 V(ScriptSource) \ 41 V(ScriptSource) \
43 V(ScriptType) \ 42 V(ScriptType) \
44 V(ScriptSourceUrl) \ 43 V(ScriptSourceUrl) \
45 V(ScriptSourceMappingUrl) \ 44 V(ScriptSourceMappingUrl) \
46 V(ScriptIsEmbedderDebugScript) \ 45 V(ScriptIsEmbedderDebugScript) \
47 V(StringLength) 46 V(StringLength)
48 47
49 #define ACCESSOR_SETTER_LIST(V) \ 48 #define ACCESSOR_SETTER_LIST(V) \
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
108 Handle<Name> name, 107 Handle<Name> name,
109 AccessorNameGetterCallback getter, 108 AccessorNameGetterCallback getter,
110 AccessorNameSetterCallback setter, 109 AccessorNameSetterCallback setter,
111 PropertyAttributes attributes); 110 PropertyAttributes attributes);
112 }; 111 };
113 112
114 } // namespace internal 113 } // namespace internal
115 } // namespace v8 114 } // namespace v8
116 115
117 #endif // V8_ACCESSORS_H_ 116 #endif // V8_ACCESSORS_H_
OLDNEW
« no previous file with comments | « no previous file | src/accessors.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698