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

Side by Side Diff: src/counters.h

Issue 2703563002: [ESNext] Implement DynamicImportCall (Closed)
Patch Set: add test + comments Created 3 years, 9 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 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_COUNTERS_H_ 5 #ifndef V8_COUNTERS_H_
6 #define V8_COUNTERS_H_ 6 #define V8_COUNTERS_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/base/atomic-utils.h" 10 #include "src/base/atomic-utils.h"
(...skipping 564 matching lines...) Expand 10 before | Expand all | Expand 10 after
575 V(Map_Clear) \ 575 V(Map_Clear) \
576 V(Map_Delete) \ 576 V(Map_Delete) \
577 V(Map_Get) \ 577 V(Map_Get) \
578 V(Map_Has) \ 578 V(Map_Has) \
579 V(Map_New) \ 579 V(Map_New) \
580 V(Map_Set) \ 580 V(Map_Set) \
581 V(Message_GetEndColumn) \ 581 V(Message_GetEndColumn) \
582 V(Message_GetLineNumber) \ 582 V(Message_GetLineNumber) \
583 V(Message_GetSourceLine) \ 583 V(Message_GetSourceLine) \
584 V(Message_GetStartColumn) \ 584 V(Message_GetStartColumn) \
585 V(Module_FinishDynamicImportSuccess) \
586 V(Module_FinishDynamicImportFailure) \
585 V(Module_Evaluate) \ 587 V(Module_Evaluate) \
586 V(Module_Instantiate) \ 588 V(Module_Instantiate) \
587 V(NumberObject_New) \ 589 V(NumberObject_New) \
588 V(NumberObject_NumberValue) \ 590 V(NumberObject_NumberValue) \
589 V(Object_CallAsConstructor) \ 591 V(Object_CallAsConstructor) \
590 V(Object_CallAsFunction) \ 592 V(Object_CallAsFunction) \
591 V(Object_CreateDataProperty) \ 593 V(Object_CreateDataProperty) \
592 V(Object_DefineOwnProperty) \ 594 V(Object_DefineOwnProperty) \
593 V(Object_DefineProperty) \ 595 V(Object_DefineProperty) \
594 V(Object_Delete) \ 596 V(Object_Delete) \
(...skipping 745 matching lines...) Expand 10 before | Expand all | Expand 10 after
1340 1342
1341 explicit Counters(Isolate* isolate); 1343 explicit Counters(Isolate* isolate);
1342 1344
1343 DISALLOW_IMPLICIT_CONSTRUCTORS(Counters); 1345 DISALLOW_IMPLICIT_CONSTRUCTORS(Counters);
1344 }; 1346 };
1345 1347
1346 } // namespace internal 1348 } // namespace internal
1347 } // namespace v8 1349 } // namespace v8
1348 1350
1349 #endif // V8_COUNTERS_H_ 1351 #endif // V8_COUNTERS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698