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

Unified Diff: sky/specs/modules.md

Issue 908263002: Specs: found a way to make @autorun work (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 years, 10 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
« no previous file with comments | « no previous file | sky/specs/script.md » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/specs/modules.md
diff --git a/sky/specs/modules.md b/sky/specs/modules.md
index f20e0c7d70ee323270cf1ef12d1a914b208dbec4..b8df21f48f9d85ab7bed6c6aa295ffef60b3b4ca 100644
--- a/sky/specs/modules.md
+++ b/sky/specs/modules.md
@@ -105,15 +105,6 @@ abstract class AbstractModule extends EventTarget {
// if there is, then mark this tagname is broken, so that it acts as if it's not registered in the parser,
// and, if this is the first time it was marked broken, log a console message regarding the issue
// (mention the tag name but not the classes, so that it's not observable that this currently happens out of order)
-
- void init(LibraryMirror library) {
- library.declarations.forEach((Symbol s, DeclarationMirror d) {
- d.metadata.forEach((InstanceMirror i) {
- if (i.reflectee is AutomaticMetadata)
- i.reflectee.init(d, this);
- });
- });
- }
}
class Module : AbstractModule {
« no previous file with comments | « no previous file | sky/specs/script.md » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698