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/runtime/runtime.h

Issue 1620253003: Implement the function.sent proposal. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 11 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_RUNTIME_RUNTIME_H_ 5 #ifndef V8_RUNTIME_RUNTIME_H_
6 #define V8_RUNTIME_RUNTIME_H_ 6 #define V8_RUNTIME_RUNTIME_H_
7 7
8 #include "src/allocation.h" 8 #include "src/allocation.h"
9 #include "src/objects.h" 9 #include "src/objects.h"
10 #include "src/unicode.h" 10 #include "src/unicode.h"
(...skipping 238 matching lines...) Expand 10 before | Expand all | Expand 10 after
249 249
250 250
251 #define FOR_EACH_INTRINSIC_GENERATOR(F) \ 251 #define FOR_EACH_INTRINSIC_GENERATOR(F) \
252 F(CreateJSGeneratorObject, 0, 1) \ 252 F(CreateJSGeneratorObject, 0, 1) \
253 F(SuspendJSGeneratorObject, -1, 1) \ 253 F(SuspendJSGeneratorObject, -1, 1) \
254 F(ResumeJSGeneratorObject, 3, 1) \ 254 F(ResumeJSGeneratorObject, 3, 1) \
255 F(GeneratorClose, 1, 1) \ 255 F(GeneratorClose, 1, 1) \
256 F(GeneratorGetFunction, 1, 1) \ 256 F(GeneratorGetFunction, 1, 1) \
257 F(GeneratorGetContext, 1, 1) \ 257 F(GeneratorGetContext, 1, 1) \
258 F(GeneratorGetReceiver, 1, 1) \ 258 F(GeneratorGetReceiver, 1, 1) \
259 F(GeneratorGetInput, 1, 1) \
259 F(GeneratorGetContinuation, 1, 1) \ 260 F(GeneratorGetContinuation, 1, 1) \
260 F(GeneratorGetSourcePosition, 1, 1) \ 261 F(GeneratorGetSourcePosition, 1, 1) \
261 F(GeneratorNext, 2, 1) \ 262 F(GeneratorNext, 2, 1) \
262 F(GeneratorThrow, 2, 1) 263 F(GeneratorThrow, 2, 1)
263 264
264 265
265 #ifdef V8_I18N_SUPPORT 266 #ifdef V8_I18N_SUPPORT
266 #define FOR_EACH_INTRINSIC_I18N(F) \ 267 #define FOR_EACH_INTRINSIC_I18N(F) \
267 F(CanonicalizeLanguageTag, 1, 1) \ 268 F(CanonicalizeLanguageTag, 1, 1) \
268 F(AvailableLocalesOf, 1, 1) \ 269 F(AvailableLocalesOf, 1, 1) \
(...skipping 954 matching lines...) Expand 10 before | Expand all | Expand 10 after
1223 1224
1224 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; 1225 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {};
1225 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; 1226 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {};
1226 STATIC_ASSERT(LANGUAGE_END == 3); 1227 STATIC_ASSERT(LANGUAGE_END == 3);
1227 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 2> {}; 1228 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 2> {};
1228 1229
1229 } // namespace internal 1230 } // namespace internal
1230 } // namespace v8 1231 } // namespace v8
1231 1232
1232 #endif // V8_RUNTIME_RUNTIME_H_ 1233 #endif // V8_RUNTIME_RUNTIME_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698