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

Unified Diff: pkg/compiler/lib/src/native/enqueue.dart

Issue 2349163003: Move towards using WorldImpact for codegen (Closed)
Patch Set: Reinsert missing features uses. Created 4 years, 3 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 side-by-side diff with in-line comments
Download patch
Index: pkg/compiler/lib/src/native/enqueue.dart
diff --git a/pkg/compiler/lib/src/native/enqueue.dart b/pkg/compiler/lib/src/native/enqueue.dart
index 166e6cf8295b4fccea36fb214ef43f09e2f4741d..1ab06feb9c789a4834715a5f98a605230b813b59 100644
--- a/pkg/compiler/lib/src/native/enqueue.dart
+++ b/pkg/compiler/lib/src/native/enqueue.dart
@@ -47,7 +47,7 @@ class NativeEnqueuer {
void handleMethodAnnotations(Element method) {}
/// Returns whether native classes are being used.
- bool hasInstantiatedNativeClasses() => false;
+ bool get hasInstantiatedNativeClasses => false;
/// Emits a summary information using the [log] function.
void logSummary(log(message)) {}
@@ -73,7 +73,7 @@ abstract class NativeEnqueuerBase implements NativeEnqueuer {
final Set<LibraryElement> processedLibraries;
- bool hasInstantiatedNativeClasses() => !registeredClasses.isEmpty;
+ bool get hasInstantiatedNativeClasses => !registeredClasses.isEmpty;
final Set<ClassElement> nativeClassesAndSubclasses = new Set<ClassElement>();
« no previous file with comments | « pkg/compiler/lib/src/js_emitter/program_builder/program_builder.dart ('k') | pkg/compiler/lib/src/resolution/registry.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698