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

Side by Side Diff: src/v8.gyp

Issue 2169833002: [parser] Refactor AstTraversalVisitor (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Rebase Created 4 years, 4 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',
458 'ast/ast-traversal-visitor.h',
460 'ast/ast-type-bounds.h', 459 'ast/ast-type-bounds.h',
461 'ast/ast-value-factory.cc', 460 'ast/ast-value-factory.cc',
462 'ast/ast-value-factory.h', 461 'ast/ast-value-factory.h',
463 'ast/ast.cc', 462 'ast/ast.cc',
464 'ast/ast.h', 463 'ast/ast.h',
465 'ast/modules.cc', 464 'ast/modules.cc',
466 'ast/modules.h', 465 'ast/modules.h',
467 'ast/prettyprinter.cc', 466 'ast/prettyprinter.cc',
468 'ast/prettyprinter.h', 467 'ast/prettyprinter.h',
469 'ast/scopeinfo.cc', 468 'ast/scopeinfo.cc',
(...skipping 1906 matching lines...) Expand 10 before | Expand all | Expand 10 after
2376 'conditions': [ 2375 'conditions': [
2377 ['want_separate_host_toolset==1', { 2376 ['want_separate_host_toolset==1', {
2378 'toolsets': ['host'], 2377 'toolsets': ['host'],
2379 }, { 2378 }, {
2380 'toolsets': ['target'], 2379 'toolsets': ['target'],
2381 }], 2380 }],
2382 ], 2381 ],
2383 }, 2382 },
2384 ], 2383 ],
2385 } 2384 }
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