Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/ilasm/Main.cs')
-rw-r--r--mcs/ilasm/Main.cs39
1 files changed, 39 insertions, 0 deletions
diff --git a/mcs/ilasm/Main.cs b/mcs/ilasm/Main.cs
new file mode 100644
index 00000000000..a7fe5edb133
--- /dev/null
+++ b/mcs/ilasm/Main.cs
@@ -0,0 +1,39 @@
+using System;
+using System.IO;
+
+using Mono.ILASM;
+
+
+public class ILAsmTest {
+ private ILAsmTest() {}
+
+
+ public static int Main (string [] args) {
+
+ if (args.Length != 1) {
+ Console.WriteLine ("Usage : ilasm [filename]");
+ return 1;
+ }
+
+ StreamReader reader = File.OpenText (args [0]);
+ ILTokenizer scanner = new ILTokenizer (reader);
+
+ bool testScanner = true;
+
+ if (testScanner) {
+ ILToken tok;
+ while ((tok = scanner.NextToken) != ILToken.EOF) {
+ Console.WriteLine (tok);
+ }
+ } else {
+ ILParser parser = new ILParser (new CodeGen ());
+ parser.yyparse (new ScannerAdapter (scanner), new yydebug.yyDebugSimple ());
+
+ CodeGen cg = parser.CodeGen;
+ int n = cg.ClassCount;
+ cg.Emit ();
+ }
+
+ return 0;
+ }
+}