예제 #1
0
        public CompilerOutput(string input, Tokens tokens, System.Numerics.Complex returnVal, ParseTree parseTree, 
			PostfixedTokens postFixedTokens, string output)
        {
            this.Input = input;
                this.Tokens = tokens;
                this.ReturnValue = returnVal;
                this.ParseTree = parseTree;
                this.PostFixedTokens = postFixedTokens;
                this.Output = output;
        }
예제 #2
0
 public ScriptCompiler(ParseTree tree, string path)
 {
     CompiledPub.Clear();
     Tree     = tree;
     Filename = path.Replace(".txt", ".gsc");
 }
예제 #3
0
 public CompilerOutput(string input, Tokens tokens, System.Numerics.Complex returnVal, ParseTree parseTree,
                       PostfixedTokens postFixedTokens, string output)
 {
     this.Input           = input;
     this.Tokens          = tokens;
     this.ReturnValue     = returnVal;
     this.ParseTree       = parseTree;
     this.PostFixedTokens = postFixedTokens;
     this.Output          = output;
 }