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

Side by Side Diff: tools/gyp/v8.gyp

Issue 938443002: [es6] implement spread calls (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Eagerly iterate spread expressions, make parser more complicated, simplify harmony-spread Created 5 years, 10 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 1686 matching lines...) Expand 10 before | Expand all | Expand 10 after
1697 'experimental_library_files': [ 1697 'experimental_library_files': [
1698 '../../src/macros.py', 1698 '../../src/macros.py',
1699 '../../src/proxy.js', 1699 '../../src/proxy.js',
1700 '../../src/generator.js', 1700 '../../src/generator.js',
1701 '../../src/harmony-string.js', 1701 '../../src/harmony-string.js',
1702 '../../src/harmony-array.js', 1702 '../../src/harmony-array.js',
1703 '../../src/harmony-array-includes.js', 1703 '../../src/harmony-array-includes.js',
1704 '../../src/harmony-tostring.js', 1704 '../../src/harmony-tostring.js',
1705 '../../src/harmony-typedarray.js', 1705 '../../src/harmony-typedarray.js',
1706 '../../src/harmony-templates.js', 1706 '../../src/harmony-templates.js',
1707 '../../src/harmony-regexp.js' 1707 '../../src/harmony-regexp.js',
1708 '../../src/harmony-spread.js'
1708 ], 1709 ],
1709 'libraries_bin_file': '<(SHARED_INTERMEDIATE_DIR)/libraries.bin', 1710 'libraries_bin_file': '<(SHARED_INTERMEDIATE_DIR)/libraries.bin',
1710 'libraries_experimental_bin_file': '<(SHARED_INTERMEDIATE_DIR)/libraries -experimental.bin', 1711 'libraries_experimental_bin_file': '<(SHARED_INTERMEDIATE_DIR)/libraries -experimental.bin',
1711 }, 1712 },
1712 'actions': [ 1713 'actions': [
1713 { 1714 {
1714 'action_name': 'js2c', 1715 'action_name': 'js2c',
1715 'inputs': [ 1716 'inputs': [
1716 '../../tools/js2c.py', 1717 '../../tools/js2c.py',
1717 '<@(library_files)', 1718 '<@(library_files)',
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
1811 }], 1812 }],
1812 ['want_separate_host_toolset==1', { 1813 ['want_separate_host_toolset==1', {
1813 'toolsets': ['host'], 1814 'toolsets': ['host'],
1814 }, { 1815 }, {
1815 'toolsets': ['target'], 1816 'toolsets': ['target'],
1816 }], 1817 }],
1817 ], 1818 ],
1818 }, 1819 },
1819 ], 1820 ],
1820 } 1821 }
OLDNEW
« test/mjsunit/harmony/spread-call.js ('K') | « test/mjsunit/harmony/spread-call-new.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698