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

Side by Side Diff: src/counters.h

Issue 2366773002: [modules] Allow Module::Instantiate to throw exceptions (Closed)
Patch Set: Rebased Created 4 years, 3 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/api.cc ('k') | src/d8.cc » ('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 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/platform/elapsed-timer.h" 10 #include "src/base/platform/elapsed-timer.h"
(...skipping 550 matching lines...) Expand 10 before | Expand all | Expand 10 after
561 V(Map_Clear) \ 561 V(Map_Clear) \
562 V(Map_Delete) \ 562 V(Map_Delete) \
563 V(Map_Get) \ 563 V(Map_Get) \
564 V(Map_Has) \ 564 V(Map_Has) \
565 V(Map_New) \ 565 V(Map_New) \
566 V(Map_Set) \ 566 V(Map_Set) \
567 V(Message_GetEndColumn) \ 567 V(Message_GetEndColumn) \
568 V(Message_GetLineNumber) \ 568 V(Message_GetLineNumber) \
569 V(Message_GetSourceLine) \ 569 V(Message_GetSourceLine) \
570 V(Message_GetStartColumn) \ 570 V(Message_GetStartColumn) \
571 V(Module_Evaluate) \
572 V(Module_Instantiate) \
571 V(NumberObject_New) \ 573 V(NumberObject_New) \
572 V(NumberObject_NumberValue) \ 574 V(NumberObject_NumberValue) \
573 V(Object_CallAsConstructor) \ 575 V(Object_CallAsConstructor) \
574 V(Object_CallAsFunction) \ 576 V(Object_CallAsFunction) \
575 V(Object_CreateDataProperty) \ 577 V(Object_CreateDataProperty) \
576 V(Object_DefineOwnProperty) \ 578 V(Object_DefineOwnProperty) \
577 V(Object_DefineProperty) \ 579 V(Object_DefineProperty) \
578 V(Object_Delete) \ 580 V(Object_Delete) \
579 V(Object_DeleteProperty) \ 581 V(Object_DeleteProperty) \
580 V(Object_ForceSet) \ 582 V(Object_ForceSet) \
(...skipping 683 matching lines...) Expand 10 before | Expand all | Expand 10 after
1264 } 1266 }
1265 1267
1266 Isolate* isolate_ = nullptr; 1268 Isolate* isolate_ = nullptr;
1267 RuntimeCallTimer timer_; 1269 RuntimeCallTimer timer_;
1268 }; 1270 };
1269 1271
1270 } // namespace internal 1272 } // namespace internal
1271 } // namespace v8 1273 } // namespace v8
1272 1274
1273 #endif // V8_COUNTERS_H_ 1275 #endif // V8_COUNTERS_H_
OLDNEW
« no previous file with comments | « src/api.cc ('k') | src/d8.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698