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

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

Issue 2639253003: Handle constructor bodies (Closed)
Patch Set: Created 3 years, 11 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
« no previous file with comments | « pkg/kernel/lib/transformations/closure/invalidate_closures.dart ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 kernel.transformations.closure_conversion; 5 library kernel.transformations.closure_conversion;
6 6
7 import '../ast.dart' show Class, Program; 7 import '../ast.dart' show Class, Program;
8 8
9 import '../core_types.dart' show CoreTypes; 9 import '../core_types.dart' show CoreTypes;
10 10
11 import 'closure/converter.dart' show ClosureConverter; 11 import 'closure/converter.dart' show ClosureConverter;
12 12
13 import 'closure/info.dart' show ClosureInfo; 13 import 'closure/info.dart' show ClosureInfo;
14 14
15 import 'closure/invalidate_closures.dart';
15 import 'closure/mock.dart' show mockUpContext; 16 import 'closure/mock.dart' show mockUpContext;
16 17
17 Program transformProgram(Program program) { 18 Program transformProgram(Program program) {
18 var info = new ClosureInfo(); 19 var info = new ClosureInfo();
19 info.visitProgram(program); 20 info.visitProgram(program);
20 21
21 CoreTypes coreTypes = new CoreTypes(program); 22 CoreTypes coreTypes = new CoreTypes(program);
22 Class contextClass = mockUpContext(coreTypes, program); 23 Class contextClass = mockUpContext(coreTypes, program);
23 var convert = new ClosureConverter(coreTypes, info, contextClass); 24 var convert = new ClosureConverter(coreTypes, info, contextClass);
24 return convert.visitProgram(program); 25 program = convert.visitProgram(program);
26 return new InvalidateClosures().visitProgram(program);
25 } 27 }
OLDNEW
« no previous file with comments | « pkg/kernel/lib/transformations/closure/invalidate_closures.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698