annotate Jint.Experimental/Program.cs @ 1:033ebe7432d5

vm v2
author cin
date Thu, 24 Oct 2013 19:45:57 +0400
parents e113095f1de0
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
e113095f1de0 initial commit, proof of concept
cin
parents:
diff changeset
1 using System;
e113095f1de0 initial commit, proof of concept
cin
parents:
diff changeset
2 using Jint.Runtime.VM;
e113095f1de0 initial commit, proof of concept
cin
parents:
diff changeset
3
e113095f1de0 initial commit, proof of concept
cin
parents:
diff changeset
4 namespace Jint.Experimental
e113095f1de0 initial commit, proof of concept
cin
parents:
diff changeset
5 {
e113095f1de0 initial commit, proof of concept
cin
parents:
diff changeset
6 class MainClass
e113095f1de0 initial commit, proof of concept
cin
parents:
diff changeset
7 {
e113095f1de0 initial commit, proof of concept
cin
parents:
diff changeset
8 public static void Main (string[] args)
e113095f1de0 initial commit, proof of concept
cin
parents:
diff changeset
9 {
e113095f1de0 initial commit, proof of concept
cin
parents:
diff changeset
10 var ticks = Environment.TickCount;
e113095f1de0 initial commit, proof of concept
cin
parents:
diff changeset
11
e113095f1de0 initial commit, proof of concept
cin
parents:
diff changeset
12
e113095f1de0 initial commit, proof of concept
cin
parents:
diff changeset
13
e113095f1de0 initial commit, proof of concept
cin
parents:
diff changeset
14 Console.WriteLine ("register access: {0} ms", Environment.TickCount - ticks);
e113095f1de0 initial commit, proof of concept
cin
parents:
diff changeset
15
e113095f1de0 initial commit, proof of concept
cin
parents:
diff changeset
16 }
e113095f1de0 initial commit, proof of concept
cin
parents:
diff changeset
17 }
e113095f1de0 initial commit, proof of concept
cin
parents:
diff changeset
18 }