08-27-周三_17-09-29
This commit is contained in:
+9
@@ -0,0 +1,9 @@
|
||||
|
||||
functions.addMultiple({
|
||||
"test-shadow" : function() {
|
||||
return new tree.Anonymous( "global" );
|
||||
},
|
||||
"test-global" : function() {
|
||||
return new tree.Anonymous( "global" );
|
||||
}
|
||||
});
|
||||
+8
@@ -0,0 +1,8 @@
|
||||
functions.addMultiple({
|
||||
"test-shadow" : function() {
|
||||
return new tree.Anonymous( "local" );
|
||||
},
|
||||
"test-local" : function() {
|
||||
return new tree.Anonymous( "local" );
|
||||
}
|
||||
});
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
functions.addMultiple({
|
||||
"test-transitive" : function() {
|
||||
return new tree.Anonymous( "transitive" );
|
||||
}
|
||||
});
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
@plugin "plugin-transitive";
|
||||
|
||||
.other {
|
||||
trans : test-transitive();
|
||||
}
|
||||
Reference in New Issue
Block a user