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

Side by Side Diff: src/builtins/builtins-definitions.h

Issue 2785293002: [inspector] move console to builtins (Closed)
Patch Set: removed unused variable Created 3 years, 8 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 | « src/builtins/builtins-console.cc ('k') | src/debug/debug-interface.h » ('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 2017 the V8 project authors. All rights reserved. 1 // Copyright 2017 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_BUILTINS_BUILTINS_DEFINITIONS_H_ 5 #ifndef V8_BUILTINS_BUILTINS_DEFINITIONS_H_
6 #define V8_BUILTINS_BUILTINS_DEFINITIONS_H_ 6 #define V8_BUILTINS_BUILTINS_DEFINITIONS_H_
7 7
8 namespace v8 { 8 namespace v8 {
9 namespace internal { 9 namespace internal {
10 10
(...skipping 327 matching lines...) Expand 10 before | Expand all | Expand 10 after
338 CPP(CallSitePrototypeGetPosition) \ 338 CPP(CallSitePrototypeGetPosition) \
339 CPP(CallSitePrototypeGetScriptNameOrSourceURL) \ 339 CPP(CallSitePrototypeGetScriptNameOrSourceURL) \
340 CPP(CallSitePrototypeGetThis) \ 340 CPP(CallSitePrototypeGetThis) \
341 CPP(CallSitePrototypeGetTypeName) \ 341 CPP(CallSitePrototypeGetTypeName) \
342 CPP(CallSitePrototypeIsConstructor) \ 342 CPP(CallSitePrototypeIsConstructor) \
343 CPP(CallSitePrototypeIsEval) \ 343 CPP(CallSitePrototypeIsEval) \
344 CPP(CallSitePrototypeIsNative) \ 344 CPP(CallSitePrototypeIsNative) \
345 CPP(CallSitePrototypeIsToplevel) \ 345 CPP(CallSitePrototypeIsToplevel) \
346 CPP(CallSitePrototypeToString) \ 346 CPP(CallSitePrototypeToString) \
347 \ 347 \
348 /* Console */ \
349 CPP(ConsoleDebug) \
350 CPP(ConsoleError) \
351 CPP(ConsoleInfo) \
352 CPP(ConsoleLog) \
353 CPP(ConsoleWarn) \
354 CPP(ConsoleDir) \
355 CPP(ConsoleDirXml) \
356 CPP(ConsoleTable) \
357 CPP(ConsoleTrace) \
358 CPP(ConsoleGroup) \
359 CPP(ConsoleGroupCollapsed) \
360 CPP(ConsoleGroupEnd) \
361 CPP(ConsoleClear) \
362 CPP(ConsoleCount) \
363 CPP(ConsoleAssert) \
364 CPP(ConsoleMarkTimeline) \
365 CPP(ConsoleProfile) \
366 CPP(ConsoleProfileEnd) \
367 CPP(ConsoleTimeline) \
368 CPP(ConsoleTimelineEnd) \
369 CPP(ConsoleTime) \
370 CPP(ConsoleTimeEnd) \
371 CPP(ConsoleTimeStamp) \
372 \
348 /* DataView */ \ 373 /* DataView */ \
349 CPP(DataViewConstructor) \ 374 CPP(DataViewConstructor) \
350 CPP(DataViewConstructor_ConstructStub) \ 375 CPP(DataViewConstructor_ConstructStub) \
351 CPP(DataViewPrototypeGetBuffer) \ 376 CPP(DataViewPrototypeGetBuffer) \
352 CPP(DataViewPrototypeGetByteLength) \ 377 CPP(DataViewPrototypeGetByteLength) \
353 CPP(DataViewPrototypeGetByteOffset) \ 378 CPP(DataViewPrototypeGetByteOffset) \
354 CPP(DataViewPrototypeGetInt8) \ 379 CPP(DataViewPrototypeGetInt8) \
355 CPP(DataViewPrototypeSetInt8) \ 380 CPP(DataViewPrototypeSetInt8) \
356 CPP(DataViewPrototypeGetUint8) \ 381 CPP(DataViewPrototypeGetUint8) \
357 CPP(DataViewPrototypeSetUint8) \ 382 CPP(DataViewPrototypeSetUint8) \
(...skipping 669 matching lines...) Expand 10 before | Expand all | Expand 10 after
1027 #define BUILTIN_LIST_TFS(V) \ 1052 #define BUILTIN_LIST_TFS(V) \
1028 BUILTIN_LIST(IGNORE_BUILTIN, IGNORE_BUILTIN, IGNORE_BUILTIN, IGNORE_BUILTIN, \ 1053 BUILTIN_LIST(IGNORE_BUILTIN, IGNORE_BUILTIN, IGNORE_BUILTIN, IGNORE_BUILTIN, \
1029 V, IGNORE_BUILTIN, IGNORE_BUILTIN, IGNORE_BUILTIN) 1054 V, IGNORE_BUILTIN, IGNORE_BUILTIN, IGNORE_BUILTIN)
1030 1055
1031 #define BUILTINS_WITH_UNTAGGED_PARAMS(V) V(WasmCompileLazy) 1056 #define BUILTINS_WITH_UNTAGGED_PARAMS(V) V(WasmCompileLazy)
1032 1057
1033 } // namespace internal 1058 } // namespace internal
1034 } // namespace v8 1059 } // namespace v8
1035 1060
1036 #endif // V8_BUILTINS_BUILTINS_DEFINITIONS_H_ 1061 #endif // V8_BUILTINS_BUILTINS_DEFINITIONS_H_
OLDNEW
« no previous file with comments | « src/builtins/builtins-console.cc ('k') | src/debug/debug-interface.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698