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

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

Issue 2828933002: [console] fast console.assert(true) (Closed)
Patch Set: reverted protocol-test.js changes 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 343 matching lines...) Expand 10 before | Expand all | Expand 10 after
354 CPP(ConsoleDir) \ 354 CPP(ConsoleDir) \
355 CPP(ConsoleDirXml) \ 355 CPP(ConsoleDirXml) \
356 CPP(ConsoleTable) \ 356 CPP(ConsoleTable) \
357 CPP(ConsoleTrace) \ 357 CPP(ConsoleTrace) \
358 CPP(ConsoleGroup) \ 358 CPP(ConsoleGroup) \
359 CPP(ConsoleGroupCollapsed) \ 359 CPP(ConsoleGroupCollapsed) \
360 CPP(ConsoleGroupEnd) \ 360 CPP(ConsoleGroupEnd) \
361 CPP(ConsoleClear) \ 361 CPP(ConsoleClear) \
362 CPP(ConsoleCount) \ 362 CPP(ConsoleCount) \
363 CPP(ConsoleAssert) \ 363 CPP(ConsoleAssert) \
364 TFJ(FastConsoleAssert, SharedFunctionInfo::kDontAdaptArgumentsSentinel) \
364 CPP(ConsoleMarkTimeline) \ 365 CPP(ConsoleMarkTimeline) \
365 CPP(ConsoleProfile) \ 366 CPP(ConsoleProfile) \
366 CPP(ConsoleProfileEnd) \ 367 CPP(ConsoleProfileEnd) \
367 CPP(ConsoleTimeline) \ 368 CPP(ConsoleTimeline) \
368 CPP(ConsoleTimelineEnd) \ 369 CPP(ConsoleTimelineEnd) \
369 CPP(ConsoleTime) \ 370 CPP(ConsoleTime) \
370 CPP(ConsoleTimeEnd) \ 371 CPP(ConsoleTimeEnd) \
371 CPP(ConsoleTimeStamp) \ 372 CPP(ConsoleTimeStamp) \
372 \ 373 \
373 /* DataView */ \ 374 /* DataView */ \
(...skipping 678 matching lines...) Expand 10 before | Expand all | Expand 10 after
1052 #define BUILTIN_LIST_TFS(V) \ 1053 #define BUILTIN_LIST_TFS(V) \
1053 BUILTIN_LIST(IGNORE_BUILTIN, IGNORE_BUILTIN, IGNORE_BUILTIN, IGNORE_BUILTIN, \ 1054 BUILTIN_LIST(IGNORE_BUILTIN, IGNORE_BUILTIN, IGNORE_BUILTIN, IGNORE_BUILTIN, \
1054 V, IGNORE_BUILTIN, IGNORE_BUILTIN, IGNORE_BUILTIN) 1055 V, IGNORE_BUILTIN, IGNORE_BUILTIN, IGNORE_BUILTIN)
1055 1056
1056 #define BUILTINS_WITH_UNTAGGED_PARAMS(V) V(WasmCompileLazy) 1057 #define BUILTINS_WITH_UNTAGGED_PARAMS(V) V(WasmCompileLazy)
1057 1058
1058 } // namespace internal 1059 } // namespace internal
1059 } // namespace v8 1060 } // namespace v8
1060 1061
1061 #endif // V8_BUILTINS_BUILTINS_DEFINITIONS_H_ 1062 #endif // V8_BUILTINS_BUILTINS_DEFINITIONS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698