| OLD | NEW |
| 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 /** Transfomer that extracts inlined script code into separate assets. */ | 5 /** Transfomer that extracts inlined script code into separate assets. */ |
| 6 library polymer.src.build.code_extractor; | 6 library polymer.src.build.code_extractor; |
| 7 | 7 |
| 8 import 'dart:async'; | 8 import 'dart:async'; |
| 9 | 9 |
| 10 import 'package:analyzer_experimental/src/generated/java_core.dart' show CharSeq
uence; |
| 10 import 'package:analyzer_experimental/src/generated/ast.dart'; | 11 import 'package:analyzer_experimental/src/generated/ast.dart'; |
| 11 import 'package:analyzer_experimental/src/generated/error.dart'; | 12 import 'package:analyzer_experimental/src/generated/error.dart'; |
| 12 import 'package:analyzer_experimental/src/generated/parser.dart'; | 13 import 'package:analyzer_experimental/src/generated/parser.dart'; |
| 13 import 'package:analyzer_experimental/src/generated/scanner.dart'; | 14 import 'package:analyzer_experimental/src/generated/scanner.dart'; |
| 14 import 'package:barback/barback.dart'; | 15 import 'package:barback/barback.dart'; |
| 15 import 'package:path/path.dart' as path; | 16 import 'package:path/path.dart' as path; |
| 16 | 17 |
| 17 import 'common.dart'; | 18 import 'common.dart'; |
| 18 | 19 |
| 19 /** | 20 /** |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 65 } | 66 } |
| 66 transform.addOutput( | 67 transform.addOutput( |
| 67 htmlChanged ? new Asset.fromString(id, document.outerHtml) : input); | 68 htmlChanged ? new Asset.fromString(id, document.outerHtml) : input); |
| 68 }); | 69 }); |
| 69 } | 70 } |
| 70 } | 71 } |
| 71 | 72 |
| 72 /** Parse [code] and determine whether it has a library directive. */ | 73 /** Parse [code] and determine whether it has a library directive. */ |
| 73 bool _hasLibraryDirective(String code) { | 74 bool _hasLibraryDirective(String code) { |
| 74 var errorListener = new _ErrorCollector(); | 75 var errorListener = new _ErrorCollector(); |
| 75 var token = new StringScanner(null, code, errorListener).tokenize(); | 76 var reader = new CharSequenceReader(new CharSequence(code)); |
| 77 var scanner = new Scanner(null, reader, errorListener); |
| 78 var token = scanner.tokenize(); |
| 76 var unit = new Parser(null, errorListener).parseCompilationUnit(token); | 79 var unit = new Parser(null, errorListener).parseCompilationUnit(token); |
| 77 return unit.directives.any((d) => d is LibraryDirective); | 80 return unit.directives.any((d) => d is LibraryDirective); |
| 78 } | 81 } |
| 79 | 82 |
| 80 class _ErrorCollector extends AnalysisErrorListener { | 83 class _ErrorCollector extends AnalysisErrorListener { |
| 81 final errors = <AnalysisError>[]; | 84 final errors = <AnalysisError>[]; |
| 82 onError(error) => errors.add(error); | 85 onError(error) => errors.add(error); |
| 83 } | 86 } |
| OLD | NEW |