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/js/macros.py

Issue 1773653002: [strong] Remove all remainders of strong mode (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 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 2006-2009 the V8 project authors. All rights reserved. 1 # Copyright 2006-2009 the V8 project authors. All rights reserved.
2 # Redistribution and use in source and binary forms, with or without 2 # Redistribution and use in source and binary forms, with or without
3 # modification, are permitted provided that the following conditions are 3 # modification, are permitted provided that the following conditions are
4 # met: 4 # met:
5 # 5 #
6 # * Redistributions of source code must retain the above copyright 6 # * Redistributions of source code must retain the above copyright
7 # notice, this list of conditions and the following disclaimer. 7 # notice, this list of conditions and the following disclaimer.
8 # * Redistributions in binary form must reproduce the above 8 # * Redistributions in binary form must reproduce the above
9 # copyright notice, this list of conditions and the following 9 # copyright notice, this list of conditions and the following
10 # disclaimer in the documentation and/or other materials provided 10 # disclaimer in the documentation and/or other materials provided
(...skipping 237 matching lines...) Expand 10 before | Expand all | Expand 10 after
248 define kUseAsm = 0; 248 define kUseAsm = 0;
249 define kBreakIterator = 1; 249 define kBreakIterator = 1;
250 define kLegacyConst = 2; 250 define kLegacyConst = 2;
251 define kMarkDequeOverflow = 3; 251 define kMarkDequeOverflow = 3;
252 define kStoreBufferOverflow = 4; 252 define kStoreBufferOverflow = 4;
253 define kSlotsBufferOverflow = 5; 253 define kSlotsBufferOverflow = 5;
254 define kObjectObserve = 6; 254 define kObjectObserve = 6;
255 define kForcedGC = 7; 255 define kForcedGC = 7;
256 define kSloppyMode = 8; 256 define kSloppyMode = 8;
257 define kStrictMode = 9; 257 define kStrictMode = 9;
258 define kStrongMode = 10;
259 define kRegExpPrototypeStickyGetter = 11; 258 define kRegExpPrototypeStickyGetter = 11;
260 define kRegExpPrototypeToString = 12; 259 define kRegExpPrototypeToString = 12;
261 define kRegExpPrototypeUnicodeGetter = 13; 260 define kRegExpPrototypeUnicodeGetter = 13;
262 define kIntlV8Parse = 14; 261 define kIntlV8Parse = 14;
263 define kIntlPattern = 15; 262 define kIntlPattern = 15;
264 define kIntlResolved = 16; 263 define kIntlResolved = 16;
265 define kPromiseChain = 17; 264 define kPromiseChain = 17;
266 define kPromiseAccept = 18; 265 define kPromiseAccept = 18;
267 define kPromiseDefer = 19; 266 define kPromiseDefer = 19;
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698