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

Side by Side Diff: src/v8.gyp

Issue 2166333002: [parser] Refactor AstTraversalVisitor (BROKEN) (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@nickie-2169833002-ast-vis
Patch Set: Created 4 years, 5 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
« no previous file with comments | « src/parsing/parser.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 433 matching lines...) Expand 10 before | Expand all | Expand 10 after
444 'asmjs/asm-types.cc', 444 'asmjs/asm-types.cc',
445 'asmjs/asm-types.h', 445 'asmjs/asm-types.h',
446 'asmjs/asm-wasm-builder.cc', 446 'asmjs/asm-wasm-builder.cc',
447 'asmjs/asm-wasm-builder.h', 447 'asmjs/asm-wasm-builder.h',
448 'assembler.cc', 448 'assembler.cc',
449 'assembler.h', 449 'assembler.h',
450 'assert-scope.h', 450 'assert-scope.h',
451 'assert-scope.cc', 451 'assert-scope.cc',
452 'ast/ast-expression-rewriter.cc', 452 'ast/ast-expression-rewriter.cc',
453 'ast/ast-expression-rewriter.h', 453 'ast/ast-expression-rewriter.h',
454 'ast/ast-expression-visitor.cc',
455 'ast/ast-expression-visitor.h',
456 'ast/ast-literal-reindexer.cc', 454 'ast/ast-literal-reindexer.cc',
457 'ast/ast-literal-reindexer.h', 455 'ast/ast-literal-reindexer.h',
458 'ast/ast-numbering.cc', 456 'ast/ast-numbering.cc',
459 'ast/ast-numbering.h', 457 'ast/ast-numbering.h',
460 'ast/ast-type-bounds.h', 458 'ast/ast-type-bounds.h',
461 'ast/ast-value-factory.cc', 459 'ast/ast-value-factory.cc',
462 'ast/ast-value-factory.h', 460 'ast/ast-value-factory.h',
463 'ast/ast.cc', 461 'ast/ast.cc',
464 'ast/ast.h', 462 'ast/ast.h',
465 'ast/modules.cc', 463 'ast/modules.cc',
(...skipping 1889 matching lines...) Expand 10 before | Expand all | Expand 10 after
2355 'conditions': [ 2353 'conditions': [
2356 ['want_separate_host_toolset==1', { 2354 ['want_separate_host_toolset==1', {
2357 'toolsets': ['host'], 2355 'toolsets': ['host'],
2358 }, { 2356 }, {
2359 'toolsets': ['target'], 2357 'toolsets': ['target'],
2360 }], 2358 }],
2361 ], 2359 ],
2362 }, 2360 },
2363 ], 2361 ],
2364 } 2362 }
OLDNEW
« no previous file with comments | « src/parsing/parser.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698