log
graph
tags
bookmarks
branches
changeset
browse
file
latest
diff
comparison
annotate
file log
raw
help
Mercurial
>
pub
>
Jint1
annotate Jint.Runtime/ClassTransition.cs @ 1:
033ebe7432d5
Find changesets by keywords (author, files, the commit message), revision number or hash, or
revset expression
.
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
namespace Jint.Runtime
e113095f1de0
initial commit, proof of concept
cin
parents:
diff
changeset
3
{
e113095f1de0
initial commit, proof of concept
cin
parents:
diff
changeset
4
public struct ClassTransition
e113095f1de0
initial commit, proof of concept
cin
parents:
diff
changeset
5
{
e113095f1de0
initial commit, proof of concept
cin
parents:
diff
changeset
6
public int classId;
e113095f1de0
initial commit, proof of concept
cin
parents:
diff
changeset
7
e113095f1de0
initial commit, proof of concept
cin
parents:
diff
changeset
8
public TransitionAction action;
e113095f1de0
initial commit, proof of concept
cin
parents:
diff
changeset
9
e113095f1de0
initial commit, proof of concept
cin
parents:
diff
changeset
10
public string propertyName;
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