| OLD | NEW |
| 1 // This code was auto-generated, is not intended to be edited, and is subject to | 1 // This code was auto-generated, is not intended to be edited, and is subject to |
| 2 // significant change. Please see the README file for more information. | 2 // significant change. Please see the README file for more information. |
| 3 library engine; | 3 library engine; |
| 4 import 'java_core.dart'; | 4 import 'java_core.dart'; |
| 5 import 'java_engine.dart'; | 5 import 'java_engine.dart'; |
| 6 import 'utilities_collection.dart'; | 6 import 'utilities_collection.dart'; |
| 7 import 'utilities_general.dart'; | 7 import 'utilities_general.dart'; |
| 8 import 'instrumentation.dart'; | 8 import 'instrumentation.dart'; |
| 9 import 'error.dart'; | 9 import 'error.dart'; |
| 10 import 'source.dart'; | 10 import 'source.dart'; |
| (...skipping 6764 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6775 modificationTime = source.modificationStamp; | 6775 modificationTime = source.modificationStamp; |
| 6776 throw new AnalysisException.con3(exception); | 6776 throw new AnalysisException.con3(exception); |
| 6777 } | 6777 } |
| 6778 } finally { | 6778 } finally { |
| 6779 timeCounterScan.stop(); | 6779 timeCounterScan.stop(); |
| 6780 } | 6780 } |
| 6781 TimeCounter_TimeCounterHandle timeCounterParse = PerformanceStatistics.parse
.start(); | 6781 TimeCounter_TimeCounterHandle timeCounterParse = PerformanceStatistics.parse
.start(); |
| 6782 try { | 6782 try { |
| 6783 Parser parser = new Parser(source, errorListener); | 6783 Parser parser = new Parser(source, errorListener); |
| 6784 compilationUnit = parser.parseCompilationUnit(token[0]); | 6784 compilationUnit = parser.parseCompilationUnit(token[0]); |
| 6785 compilationUnit.lineInfo = lineInfo; |
| 6785 errors = errorListener.getErrors2(source); | 6786 errors = errorListener.getErrors2(source); |
| 6786 for (Directive directive in compilationUnit.directives) { | 6787 for (Directive directive in compilationUnit.directives) { |
| 6787 if (directive is ExportDirective) { | 6788 if (directive is ExportDirective) { |
| 6788 Source exportSource = resolveSource(source, directive as ExportDirecti
ve); | 6789 Source exportSource = resolveSource(source, directive as ExportDirecti
ve); |
| 6789 if (exportSource != null) { | 6790 if (exportSource != null) { |
| 6790 javaSetAdd(_exportedSources, exportSource); | 6791 javaSetAdd(_exportedSources, exportSource); |
| 6791 } | 6792 } |
| 6792 } else if (directive is ImportDirective) { | 6793 } else if (directive is ImportDirective) { |
| 6793 Source importSource = resolveSource(source, directive as ImportDirecti
ve); | 6794 Source importSource = resolveSource(source, directive as ImportDirecti
ve); |
| 6794 if (importSource != null) { | 6795 if (importSource != null) { |
| (...skipping 463 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 7258 } | 7259 } |
| 7259 void logError2(String message, Exception exception) { | 7260 void logError2(String message, Exception exception) { |
| 7260 } | 7261 } |
| 7261 void logError3(Exception exception) { | 7262 void logError3(Exception exception) { |
| 7262 } | 7263 } |
| 7263 void logInformation(String message) { | 7264 void logInformation(String message) { |
| 7264 } | 7265 } |
| 7265 void logInformation2(String message, Exception exception) { | 7266 void logInformation2(String message, Exception exception) { |
| 7266 } | 7267 } |
| 7267 } | 7268 } |
| OLD | NEW |