|
@@ -0,0 +1,178 @@
|
|
|
+define(["amber/boot", "amber_core/Compiler-AST"], function($boot){"use strict";
|
|
|
+if(!$boot.nilAsReceiver)$boot.nilAsReceiver=$boot.nil;
|
|
|
+var $core=$boot.api,nil=$boot.nilAsReceiver,$recv=$boot.asReceiver,$globals=$boot.globals;
|
|
|
+if(!$boot.nilAsClass)$boot.nilAsClass=$boot.dnu;
|
|
|
+$core.addPackage("Compiler-STX");
|
|
|
+$core.packages["Compiler-STX"].innerEval = function (expr) { return eval(expr); };
|
|
|
+$core.packages["Compiler-STX"].transport = {"type":"amd","amdNamespace":"amber_core"};
|
|
|
+
|
|
|
+$core.addClass("StxNode", $globals.ASTNode, ["tag", "attributes", "children"], "Compiler-STX");
|
|
|
+
|
|
|
+$globals.StxNode.comment="I represent an assignment node.";
|
|
|
+
|
|
|
+$core.addMethod(
|
|
|
+$core.method({
|
|
|
+selector: "acceptDagVisitor:",
|
|
|
+protocol: "visiting",
|
|
|
+fn: function (aVisitor){
|
|
|
+var self=this,$self=this;
|
|
|
+
|
|
|
+return $core.withContext(function($ctx1) {
|
|
|
+
|
|
|
+return $recv(aVisitor)._visitDagNode_(self);
|
|
|
+
|
|
|
+}, function($ctx1) {$ctx1.fill(self,"acceptDagVisitor:",{aVisitor:aVisitor},$globals.StxNode)});
|
|
|
+
|
|
|
+},
|
|
|
+
|
|
|
+args: ["aVisitor"],
|
|
|
+source: "acceptDagVisitor: aVisitor\x0a\x09^ aVisitor visitDagNode: self",
|
|
|
+referencedClasses: [],
|
|
|
+
|
|
|
+messageSends: ["visitDagNode:"]
|
|
|
+}),
|
|
|
+$globals.StxNode);
|
|
|
+
|
|
|
+$core.addMethod(
|
|
|
+$core.method({
|
|
|
+selector: "attributes",
|
|
|
+protocol: "accessing",
|
|
|
+fn: function (){
|
|
|
+var self=this,$self=this;
|
|
|
+return $self["@attributes"];
|
|
|
+
|
|
|
+},
|
|
|
+
|
|
|
+args: [],
|
|
|
+source: "attributes\x0a\x09^ attributes",
|
|
|
+referencedClasses: [],
|
|
|
+
|
|
|
+messageSends: []
|
|
|
+}),
|
|
|
+$globals.StxNode);
|
|
|
+
|
|
|
+$core.addMethod(
|
|
|
+$core.method({
|
|
|
+selector: "attributes:",
|
|
|
+protocol: "accessing",
|
|
|
+fn: function (anObject){
|
|
|
+var self=this,$self=this;
|
|
|
+$self["@attributes"]=anObject;
|
|
|
+return self;
|
|
|
+
|
|
|
+},
|
|
|
+
|
|
|
+args: ["anObject"],
|
|
|
+source: "attributes: anObject\x0a\x09attributes := anObject",
|
|
|
+referencedClasses: [],
|
|
|
+
|
|
|
+messageSends: []
|
|
|
+}),
|
|
|
+$globals.StxNode);
|
|
|
+
|
|
|
+$core.addMethod(
|
|
|
+$core.method({
|
|
|
+selector: "children",
|
|
|
+protocol: "accessing",
|
|
|
+fn: function (){
|
|
|
+var self=this,$self=this;
|
|
|
+return $self["@children"];
|
|
|
+
|
|
|
+},
|
|
|
+
|
|
|
+args: [],
|
|
|
+source: "children\x0a\x09^ children",
|
|
|
+referencedClasses: [],
|
|
|
+
|
|
|
+messageSends: []
|
|
|
+}),
|
|
|
+$globals.StxNode);
|
|
|
+
|
|
|
+$core.addMethod(
|
|
|
+$core.method({
|
|
|
+selector: "children:",
|
|
|
+protocol: "accessing",
|
|
|
+fn: function (anObject){
|
|
|
+var self=this,$self=this;
|
|
|
+$self["@children"]=anObject;
|
|
|
+return self;
|
|
|
+
|
|
|
+},
|
|
|
+
|
|
|
+args: ["anObject"],
|
|
|
+source: "children: anObject\x0a\x09children := anObject",
|
|
|
+referencedClasses: [],
|
|
|
+
|
|
|
+messageSends: []
|
|
|
+}),
|
|
|
+$globals.StxNode);
|
|
|
+
|
|
|
+$core.addMethod(
|
|
|
+$core.method({
|
|
|
+selector: "dagChildren",
|
|
|
+protocol: "accessing",
|
|
|
+fn: function (){
|
|
|
+var self=this,$self=this;
|
|
|
+
|
|
|
+return $core.withContext(function($ctx1) {
|
|
|
+
|
|
|
+var $1;
|
|
|
+$1=[$self._tag()];
|
|
|
+$recv($1)._addAll_($self._attributes());
|
|
|
+
|
|
|
+$ctx1.sendIdx["addAll:"]=1;
|
|
|
+
|
|
|
+$recv($1)._addAll_($self._children());
|
|
|
+return $recv($1)._yourself();
|
|
|
+
|
|
|
+}, function($ctx1) {$ctx1.fill(self,"dagChildren",{},$globals.StxNode)});
|
|
|
+
|
|
|
+},
|
|
|
+
|
|
|
+args: [],
|
|
|
+source: "dagChildren\x0a\x09^ { self tag }\x0a\x09\x09addAll: self attributes;\x0a\x09\x09addAll: self children;\x0a\x09\x09yourself",
|
|
|
+referencedClasses: [],
|
|
|
+
|
|
|
+messageSends: ["addAll:", "tag", "attributes", "children", "yourself"]
|
|
|
+}),
|
|
|
+$globals.StxNode);
|
|
|
+
|
|
|
+$core.addMethod(
|
|
|
+$core.method({
|
|
|
+selector: "tag",
|
|
|
+protocol: "accessing",
|
|
|
+fn: function (){
|
|
|
+var self=this,$self=this;
|
|
|
+return $self["@tag"];
|
|
|
+
|
|
|
+},
|
|
|
+
|
|
|
+args: [],
|
|
|
+source: "tag\x0a\x09^ tag",
|
|
|
+referencedClasses: [],
|
|
|
+
|
|
|
+messageSends: []
|
|
|
+}),
|
|
|
+$globals.StxNode);
|
|
|
+
|
|
|
+$core.addMethod(
|
|
|
+$core.method({
|
|
|
+selector: "tag:",
|
|
|
+protocol: "accessing",
|
|
|
+fn: function (anObject){
|
|
|
+var self=this,$self=this;
|
|
|
+$self["@tag"]=anObject;
|
|
|
+return self;
|
|
|
+
|
|
|
+},
|
|
|
+
|
|
|
+args: ["anObject"],
|
|
|
+source: "tag: anObject\x0a\x09tag := anObject",
|
|
|
+referencedClasses: [],
|
|
|
+
|
|
|
+messageSends: []
|
|
|
+}),
|
|
|
+$globals.StxNode);
|
|
|
+
|
|
|
+
|
|
|
+});
|