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

Side by Side Diff: pkg/compiler/lib/src/universe/codegen_world_builder.dart

Issue 2925263002: A step towards handling `new Object()` in compile_from_dill_test (Closed)
Patch Set: Updated cf. comments Created 3 years, 6 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/compiler/lib/src/ssa/rasta_ssa_builder_task.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) 2017, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2017, 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 part of world_builder; 5 part of world_builder;
6 6
7 /// World builder specific to codegen. 7 /// World builder specific to codegen.
8 /// 8 ///
9 /// This adds additional access to liveness of selectors and elements. 9 /// This adds additional access to liveness of selectors and elements.
10 abstract class CodegenWorldBuilder implements WorldBuilder { 10 abstract class CodegenWorldBuilder implements WorldBuilder {
(...skipping 598 matching lines...) Expand 10 before | Expand all | Expand 10 after
609 609
610 @override 610 @override
611 void forEachParameter( 611 void forEachParameter(
612 FunctionEntity function, void f(DartType type, String name)) { 612 FunctionEntity function, void f(DartType type, String name)) {
613 throw new UnimplementedError('KernelCodegenWorldBuilder.forEachParameter'); 613 throw new UnimplementedError('KernelCodegenWorldBuilder.forEachParameter');
614 } 614 }
615 615
616 @override 616 @override
617 void forEachInstanceField( 617 void forEachInstanceField(
618 ClassEntity cls, void f(ClassEntity declarer, FieldEntity field)) { 618 ClassEntity cls, void f(ClassEntity declarer, FieldEntity field)) {
619 throw new UnimplementedError( 619 _elementEnvironment.forEachClassMember(cls,
620 'KernelCodegenWorldBuilder.forEachInstanceField'); 620 (ClassEntity declarer, MemberEntity member) {
621 if (member.isField && member.isInstanceMember) f(declarer, member);
622 });
621 } 623 }
622 } 624 }
OLDNEW
« no previous file with comments | « pkg/compiler/lib/src/ssa/rasta_ssa_builder_task.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698