| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent 4e6be4c commit e1dcb79
3 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -828,6 +828,7 @@ action("postmortem-metadata") { | |||
| 828 | 828 | "src/objects/js-regexp-string-iterator.h", | |
| 829 | 829 | "src/objects/map.h", | |
| 830 | 830 | "src/objects/map-inl.h", | |
| 831 | + "src/objects/scope-info.h", | ||
| 831 | 832 | "src/objects/script.h", | |
| 832 | 833 | "src/objects/script-inl.h", | |
| 833 | 834 | "src/objects/shared-function-info.h", | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -2948,6 +2948,7 @@ | |||
| 2948 | 2948 | '../src/objects/js-regexp-string-iterator.h', | |
| 2949 | 2949 | '../src/objects/map.h', | |
| 2950 | 2950 | '../src/objects/map-inl.h', | |
| 2951 | + '../src/objects/scope-info.h', | ||
| 2951 | 2952 | '../src/objects/script.h', | |
| 2952 | 2953 | '../src/objects/script-inl.h', | |
| 2953 | 2954 | '../src/objects/shared-function-info.h', | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -58,6 +58,9 @@ | |||
| 58 | 58 | { 'name': 'APIObjectType', 'value': 'JS_API_OBJECT_TYPE' }, | |
| 59 | 59 | { 'name': 'SpecialAPIObjectType', 'value': 'JS_SPECIAL_API_OBJECT_TYPE' }, | |
| 60 | 60 | ||
| 61 | + { 'name': 'FirstContextType', 'value': 'FIRST_CONTEXT_TYPE' }, | ||
| 62 | + { 'name': 'LastContextType', 'value': 'LAST_CONTEXT_TYPE' }, | ||
| 63 | + | ||
| 61 | 64 | { 'name': 'IsNotStringMask', 'value': 'kIsNotStringMask' }, | |
| 62 | 65 | { 'name': 'StringTag', 'value': 'kStringTag' }, | |
| 63 | 66 | ||
@@ -289,7 +292,7 @@ | |||
| 289 | 292 | expected_classes = [ | |
| 290 | 293 | 'ConsString', 'FixedArray', 'HeapNumber', 'JSArray', 'JSFunction', | |
| 291 | 294 | 'JSObject', 'JSRegExp', 'JSValue', 'Map', 'Oddball', 'Script', | |
| 292 | - 'SeqOneByteString', 'SharedFunctionInfo' | ||
| 295 | + 'SeqOneByteString', 'SharedFunctionInfo', 'ScopeInfo' | ||
| 293 | 296 | ]; | |
| 294 | 297 | ||
| 295 | 298 | ||
| Back | FazBrowse Home | New Git URL |
0 commit comments