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

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

Issue 2785293002: [inspector] move console to builtins (Closed)
Patch Set: use console helper 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
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 316 matching lines...) Expand 10 before | Expand all | Expand 10 after
327 CPP(CallSitePrototypeGetPosition) \ 327 CPP(CallSitePrototypeGetPosition) \
328 CPP(CallSitePrototypeGetScriptNameOrSourceURL) \ 328 CPP(CallSitePrototypeGetScriptNameOrSourceURL) \
329 CPP(CallSitePrototypeGetThis) \ 329 CPP(CallSitePrototypeGetThis) \
330 CPP(CallSitePrototypeGetTypeName) \ 330 CPP(CallSitePrototypeGetTypeName) \
331 CPP(CallSitePrototypeIsConstructor) \ 331 CPP(CallSitePrototypeIsConstructor) \
332 CPP(CallSitePrototypeIsEval) \ 332 CPP(CallSitePrototypeIsEval) \
333 CPP(CallSitePrototypeIsNative) \ 333 CPP(CallSitePrototypeIsNative) \
334 CPP(CallSitePrototypeIsToplevel) \ 334 CPP(CallSitePrototypeIsToplevel) \
335 CPP(CallSitePrototypeToString) \ 335 CPP(CallSitePrototypeToString) \
336 \ 336 \
337 /* Console */ \
338 CPP(ConsoleDebug) \
339 CPP(ConsoleError) \
340 CPP(ConsoleInfo) \
341 CPP(ConsoleLog) \
342 CPP(ConsoleWarn) \
343 CPP(ConsoleDir) \
344 CPP(ConsoleDirXml) \
345 CPP(ConsoleTable) \
346 CPP(ConsoleTrace) \
347 CPP(ConsoleGroup) \
348 CPP(ConsoleGroupCollapsed) \
349 CPP(ConsoleGroupEnd) \
350 CPP(ConsoleClear) \
351 CPP(ConsoleCount) \
352 CPP(ConsoleAssert) \
353 CPP(ConsoleMarkTimeline) \
354 CPP(ConsoleProfile) \
355 CPP(ConsoleProfileEnd) \
356 CPP(ConsoleTimeline) \
357 CPP(ConsoleTimelineEnd) \
358 CPP(ConsoleTime) \
359 CPP(ConsoleTimeEnd) \
360 CPP(ConsoleTimeStamp) \
361 \
337 /* DataView */ \ 362 /* DataView */ \
338 CPP(DataViewConstructor) \ 363 CPP(DataViewConstructor) \
339 CPP(DataViewConstructor_ConstructStub) \ 364 CPP(DataViewConstructor_ConstructStub) \
340 CPP(DataViewPrototypeGetBuffer) \ 365 CPP(DataViewPrototypeGetBuffer) \
341 CPP(DataViewPrototypeGetByteLength) \ 366 CPP(DataViewPrototypeGetByteLength) \
342 CPP(DataViewPrototypeGetByteOffset) \ 367 CPP(DataViewPrototypeGetByteOffset) \
343 CPP(DataViewPrototypeGetInt8) \ 368 CPP(DataViewPrototypeGetInt8) \
344 CPP(DataViewPrototypeSetInt8) \ 369 CPP(DataViewPrototypeSetInt8) \
345 CPP(DataViewPrototypeGetUint8) \ 370 CPP(DataViewPrototypeGetUint8) \
346 CPP(DataViewPrototypeSetUint8) \ 371 CPP(DataViewPrototypeSetUint8) \
(...skipping 649 matching lines...) Expand 10 before | Expand all | Expand 10 after
996 #define BUILTIN_LIST_DBG(V) \ 1021 #define BUILTIN_LIST_DBG(V) \
997 BUILTIN_LIST(IGNORE_BUILTIN, IGNORE_BUILTIN, IGNORE_BUILTIN, IGNORE_BUILTIN, \ 1022 BUILTIN_LIST(IGNORE_BUILTIN, IGNORE_BUILTIN, IGNORE_BUILTIN, IGNORE_BUILTIN, \
998 IGNORE_BUILTIN, IGNORE_BUILTIN, V) 1023 IGNORE_BUILTIN, IGNORE_BUILTIN, V)
999 1024
1000 #define BUILTINS_WITH_UNTAGGED_PARAMS(V) V(WasmCompileLazy) 1025 #define BUILTINS_WITH_UNTAGGED_PARAMS(V) V(WasmCompileLazy)
1001 1026
1002 } // namespace internal 1027 } // namespace internal
1003 } // namespace v8 1028 } // namespace v8
1004 1029
1005 #endif // V8_BUILTINS_BUILTINS_DEFINITIONS_H_ 1030 #endif // V8_BUILTINS_BUILTINS_DEFINITIONS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698