Index: runtime/lib/deferred_load_patch.dart |
diff --git a/runtime/lib/deferred_load_patch.dart b/runtime/lib/deferred_load_patch.dart |
index 800fdefbff3feba91103d0fe519738e7ee8e3e64..32f233bb5c861a0e6e3f6125094cf8bbc6182ea5 100644 |
--- a/runtime/lib/deferred_load_patch.dart |
+++ b/runtime/lib/deferred_load_patch.dart |
@@ -4,8 +4,8 @@ |
final Set<String> _loadedLibraries = new Set<String>(); |
-patch class DeferredLibrary { |
- /* patch */ Future<Null> load() { |
+@patch class DeferredLibrary { |
+ /* @patch */ Future<Null> load() { |
// Dummy implementation that should eventually be replaced by real |
// implementation. |
Future future = |