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

Side by Side Diff: pkg/compiler/lib/src/js_emitter/js_emitter.dart

Issue 1207343003: dart2js: Create program_builder directory and move corresponding files. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 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
OLDNEW
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 library dart2js.js_emitter; 5 library dart2js.js_emitter;
6 6
7 import 'dart:convert'; 7 import 'dart:convert';
8 import 'dart:collection' show HashMap; 8 import 'dart:collection' show HashMap;
9 9
10 import '../common.dart'; 10 import '../common.dart';
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 JavaScriptConstantCompiler, 48 JavaScriptConstantCompiler,
49 Namer, 49 Namer,
50 RuntimeTypes, 50 RuntimeTypes,
51 SetterName, 51 SetterName,
52 Substitution, 52 Substitution,
53 TypeCheck, 53 TypeCheck,
54 TypeChecks, 54 TypeChecks,
55 TypeVariableHandler; 55 TypeVariableHandler;
56 56
57 import 'model.dart'; 57 import 'model.dart';
58 import 'program_builder.dart'; 58 import 'program_builder/program_builder.dart';
59 59
60 import 'lazy_emitter/emitter.dart' as lazy_js_emitter; 60 import 'lazy_emitter/emitter.dart' as lazy_js_emitter;
61 61
62 import '../io/line_column_provider.dart' show 62 import '../io/line_column_provider.dart' show
63 LineColumnCollector, 63 LineColumnCollector,
64 LineColumnProvider; 64 LineColumnProvider;
65 65
66 import '../io/source_map_builder.dart' show 66 import '../io/source_map_builder.dart' show
67 SourceMapBuilder; 67 SourceMapBuilder;
68 68
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
110 110
111 part 'full_emitter/class_builder.dart'; 111 part 'full_emitter/class_builder.dart';
112 part 'full_emitter/class_emitter.dart'; 112 part 'full_emitter/class_emitter.dart';
113 part 'full_emitter/code_emitter_helper.dart'; 113 part 'full_emitter/code_emitter_helper.dart';
114 part 'full_emitter/container_builder.dart'; 114 part 'full_emitter/container_builder.dart';
115 part 'full_emitter/declarations.dart'; 115 part 'full_emitter/declarations.dart';
116 part 'full_emitter/emitter.dart'; 116 part 'full_emitter/emitter.dart';
117 part 'full_emitter/interceptor_emitter.dart'; 117 part 'full_emitter/interceptor_emitter.dart';
118 part 'full_emitter/nsm_emitter.dart'; 118 part 'full_emitter/nsm_emitter.dart';
119 part 'full_emitter/setup_program_builder.dart'; 119 part 'full_emitter/setup_program_builder.dart';
OLDNEW
« no previous file with comments | « pkg/compiler/lib/src/js_emitter/full_emitter/emitter.dart ('k') | pkg/compiler/lib/src/js_emitter/lazy_emitter/emitter.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698