コード例 #1
0
ファイル: test-interp.cs プロジェクト: emtees/old-code
	public static int Main (string[] args) {
		if (args.Length != 1) {
			Console.WriteLine ("Usage: test-interp.exe filename");
			return 1;
		}

		IMessageStoreCollection stores = new IMessageStoreCollection ();
		stores.Add (new CTSMessageTarget (typeof (Funcs)));

		Parser parser = new Parser (stores, new LogoMessageTarget ());
		FileStream stream = new FileStream (args[0], FileMode.Open);
		InstructionList tree = parser.Parse (new StreamReader (stream));
		Interpreter interp = new Interpreter (stores);
		interp.Execute (tree);
		return 0;
	}
コード例 #2
0
ファイル: Interpreter.cs プロジェクト: emtees/old-code
		public Interpreter (Interpreter interp, LogoContext context) {
			this.stores = interp.stores;
			this.context = context;
		}
コード例 #3
0
ファイル: Interpreter.cs プロジェクト: emtees/old-code
		public Interpreter (IMessageStoreCollection stores) {
			this.stores = stores;
			context = new LogoContext (null);
		}
コード例 #4
0
ファイル: Compiler.cs プロジェクト: emtees/old-code
		public static Compiler Create (IMessageStoreCollection stores) {
			return new CSharpCompiler (stores);
		}
コード例 #5
0
ファイル: Compiler.cs プロジェクト: emtees/old-code
		protected Compiler (IMessageStoreCollection stores) {
			this.stores = stores;
			context = new LogoContext (null);
		}
コード例 #6
0
ファイル: Parser.cs プロジェクト: emtees/old-code
		public Parser (IMessageStoreCollection stores, LogoMessageTarget funcs) {
			this.stores = stores;
			this.funcs = funcs;
		}
コード例 #7
0
ファイル: Parser.cs プロジェクト: emtees/old-code
		public Parser () {
			stores = new IMessageStoreCollection ();
		}
コード例 #8
0
ファイル: main.cs プロジェクト: emtees/old-code
		private void LoadFuncs () {
			funcs = new IMessageStoreCollection ();
			funcs.Add (new CTSMessageTarget (typeof (Funcs)));
			lmt = new LogoMessageTarget ();
			funcs.Add (lmt);
		}
コード例 #9
0
ファイル: CSharpCompiler.cs プロジェクト: emtees/old-code
		internal CSharpCompiler (IMessageStoreCollection stores) : base (stores) {
		}