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

Side by Side Diff: src/v8.gyp

Issue 2405253006: [builtins] implement Array.prototype[@@iterator] in TFJ builtins (Closed)
Patch Set: remove apparently redundant var bindings and fix other bugs Created 4 years, 2 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 # 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 2215 matching lines...) Expand 10 before | Expand all | Expand 10 after
2226 'js/array.js', 2226 'js/array.js',
2227 'js/string.js', 2227 'js/string.js',
2228 'js/regexp.js', 2228 'js/regexp.js',
2229 'js/arraybuffer.js', 2229 'js/arraybuffer.js',
2230 'js/typedarray.js', 2230 'js/typedarray.js',
2231 'js/collection.js', 2231 'js/collection.js',
2232 'js/weak-collection.js', 2232 'js/weak-collection.js',
2233 'js/collection-iterator.js', 2233 'js/collection-iterator.js',
2234 'js/promise.js', 2234 'js/promise.js',
2235 'js/messages.js', 2235 'js/messages.js',
2236 'js/array-iterator.js',
2237 'js/templates.js', 2236 'js/templates.js',
2238 'js/spread.js', 2237 'js/spread.js',
2239 'js/proxy.js', 2238 'js/proxy.js',
2240 'js/async-await.js', 2239 'js/async-await.js',
2241 'debug/mirrors.js', 2240 'debug/mirrors.js',
2242 'debug/debug.js', 2241 'debug/debug.js',
2243 'debug/liveedit.js', 2242 'debug/liveedit.js',
2244 ], 2243 ],
2245 'experimental_library_files': [ 2244 'experimental_library_files': [
2246 'js/macros.py', 2245 'js/macros.py',
(...skipping 226 matching lines...) Expand 10 before | Expand all | Expand 10 after
2473 'conditions': [ 2472 'conditions': [
2474 ['want_separate_host_toolset_mkpeephole==1', { 2473 ['want_separate_host_toolset_mkpeephole==1', {
2475 'toolsets': ['host'], 2474 'toolsets': ['host'],
2476 }, { 2475 }, {
2477 'toolsets': ['target'], 2476 'toolsets': ['target'],
2478 }], 2477 }],
2479 ], 2478 ],
2480 }, 2479 },
2481 ], 2480 ],
2482 } 2481 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698