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

Side by Side Diff: pkg/front_end/lib/src/fasta/dill/dill_target.dart

Issue 2729913005: [Fasta] include source code in dill (Closed)
Patch Set: Addressed comments Created 3 years, 9 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 (c) 2016, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2016, 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 library fasta.dill_target; 5 library fasta.dill_target;
6 6
7 import 'dart:async' show Future; 7 import 'dart:async' show Future;
8 8
9 import 'package:kernel/ast.dart' show Class; 9 import 'package:kernel/ast.dart' show Class;
10 10
(...skipping 13 matching lines...) Expand all
24 24
25 class DillTarget extends TargetImplementation { 25 class DillTarget extends TargetImplementation {
26 bool isLoaded = false; 26 bool isLoaded = false;
27 DillLoader loader; 27 DillLoader loader;
28 28
29 DillTarget(Ticker ticker, TranslateUri uriTranslator) 29 DillTarget(Ticker ticker, TranslateUri uriTranslator)
30 : super(ticker, uriTranslator) { 30 : super(ticker, uriTranslator) {
31 loader = new DillLoader(this); 31 loader = new DillLoader(this);
32 } 32 }
33 33
34 void addLineStarts(Uri uri, List<int> lineStarts) { 34 void addSourceInformation(
35 Uri uri, List<int> lineStarts, List<int> sourceCode) {
35 internalError("Unsupported operation."); 36 internalError("Unsupported operation.");
36 } 37 }
37 38
38 void read(Uri uri) { 39 void read(Uri uri) {
39 if (loader.input == null) { 40 if (loader.input == null) {
40 loader.input = uri; 41 loader.input = uri;
41 } else { 42 } else {
42 inputError(uri, -1, "Can only read one dill file."); 43 inputError(uri, -1, "Can only read one dill file.");
43 } 44 }
44 } 45 }
(...skipping 19 matching lines...) Expand all
64 return null; 65 return null;
65 } 66 }
66 67
67 void breakCycle(ClassBuilder cls) {} 68 void breakCycle(ClassBuilder cls) {}
68 69
69 Class get objectClass { 70 Class get objectClass {
70 KernelClassBuilder builder = loader.coreLibrary.exports["Object"]; 71 KernelClassBuilder builder = loader.coreLibrary.exports["Object"];
71 return builder.cls; 72 return builder.cls;
72 } 73 }
73 } 74 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698