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

Side by Side Diff: src/objects.h

Issue 1895603002: [esnext] prototype runtime implementation for async functions (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@AsyncFunction
Patch Set: disable opt too to fix test variants ._< Created 4 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 2015 the V8 project authors. All rights reserved. 1 // Copyright 2015 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_OBJECTS_H_ 5 #ifndef V8_OBJECTS_H_
6 #define V8_OBJECTS_H_ 6 #define V8_OBJECTS_H_
7 7
8 #include <iosfwd> 8 #include <iosfwd>
9 9
10 #include "src/assert-scope.h" 10 #include "src/assert-scope.h"
(...skipping 6891 matching lines...) Expand 10 before | Expand all | Expand 10 after
6902 6902
6903 // Indicates that code for this function cannot be compiled with Crankshaft. 6903 // Indicates that code for this function cannot be compiled with Crankshaft.
6904 DECL_BOOLEAN_ACCESSORS(dont_crankshaft) 6904 DECL_BOOLEAN_ACCESSORS(dont_crankshaft)
6905 6905
6906 // Indicates that code for this function cannot be flushed. 6906 // Indicates that code for this function cannot be flushed.
6907 DECL_BOOLEAN_ACCESSORS(dont_flush) 6907 DECL_BOOLEAN_ACCESSORS(dont_flush)
6908 6908
6909 // Indicates that this function is a generator. 6909 // Indicates that this function is a generator.
6910 DECL_BOOLEAN_ACCESSORS(is_generator) 6910 DECL_BOOLEAN_ACCESSORS(is_generator)
6911 6911
6912 // Indicates that this function is an async function.
6913 DECL_BOOLEAN_ACCESSORS(is_async)
6914
6912 // Indicates that this function is an arrow function. 6915 // Indicates that this function is an arrow function.
6913 DECL_BOOLEAN_ACCESSORS(is_arrow) 6916 DECL_BOOLEAN_ACCESSORS(is_arrow)
6914 6917
6915 // Indicates that this function is a concise method. 6918 // Indicates that this function is a concise method.
6916 DECL_BOOLEAN_ACCESSORS(is_concise_method) 6919 DECL_BOOLEAN_ACCESSORS(is_concise_method)
6917 6920
6918 // Indicates that this function is a getter. 6921 // Indicates that this function is a getter.
6919 DECL_BOOLEAN_ACCESSORS(is_getter_function) 6922 DECL_BOOLEAN_ACCESSORS(is_getter_function)
6920 6923
6921 // Indicates that this function is a setter. 6924 // Indicates that this function is a setter.
(...skipping 3868 matching lines...) Expand 10 before | Expand all | Expand 10 after
10790 } 10793 }
10791 return value; 10794 return value;
10792 } 10795 }
10793 }; 10796 };
10794 10797
10795 10798
10796 } // NOLINT, false-positive due to second-order macros. 10799 } // NOLINT, false-positive due to second-order macros.
10797 } // NOLINT, false-positive due to second-order macros. 10800 } // NOLINT, false-positive due to second-order macros.
10798 10801
10799 #endif // V8_OBJECTS_H_ 10802 #endif // V8_OBJECTS_H_
OLDNEW
« src/builtins.cc ('K') | « src/js/promise.js ('k') | src/objects.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698