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

Side by Side Diff: pkg/kernel/lib/transformations/closure_conversion.dart

Issue 2561723003: Merge kernel closure conversion into the Dart SDK (Closed)
Patch Set: Remove path constraint Created 4 years 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
(Empty)
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
3 // BSD-style license that can be found in the LICENSE file.
4
5 library kernel.transformations.closure_conversion;
6
7 import '../ast.dart' show Class, Program;
8
9 import '../core_types.dart' show CoreTypes;
10
11 import 'closure/converter.dart' show ClosureConverter;
12
13 import 'closure/info.dart' show ClosureInfo;
14
15 import 'closure/mock.dart' show mockUpContext;
16
17 Program transformProgram(Program program) {
18 var info = new ClosureInfo();
19 info.visitProgram(program);
20
21 CoreTypes coreTypes = new CoreTypes(program);
22 Class contextClass = mockUpContext(coreTypes, program);
23 var convert = new ClosureConverter(coreTypes, info, contextClass);
24 return convert.visitProgram(program);
25 }
OLDNEW
« no previous file with comments | « pkg/kernel/lib/transformations/closure/mock.dart ('k') | pkg/kernel/lib/type_propagation/canonicalizer.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698