Inheritance: Microsoft.Zing.StateImpl
Exemplo n.º 1
0
            public SimpleArray(Application app, int size) : base(app) 
            {
				 array = new _ElementType[size];
            }
Exemplo n.º 2
0
 public StructSet(Application app) : base(app) { }
Exemplo n.º 3
0
 public ComplexSet(Application app) : base(app) { }
Exemplo n.º 4
0
 public SimpleSet(Application app): base(app) { }
Exemplo n.º 5
0
 public EnumSet(Application app): base(app) { }
Exemplo n.º 6
0
 public abstract __InterfaceMethod __CreateInterfaceMethod(Application application);
Exemplo n.º 7
0
 public Class(Application application) : base(application)
 {
     // For each non-static field with an initializer:
     //     Insert assignment statement to initialize the field here
 }
Exemplo n.º 8
0
 public ComplexChan(Application app): base(app) { }
Exemplo n.º 9
0
 // the splicer assumes that this is the first method in
 // the class
 public ClassMethod(Application app)
 {
     application = app;
     nextBlock = Blocks.Enter;
     handlerBlock = Blocks.None;
     locals = new LocalVars(this);
     inputs = new InputVars(this);
     outputs = new OutputVars(this);
 }
Exemplo n.º 10
0
 public StructChan(Application app): base(app) { }
Exemplo n.º 11
0
 public EnumChan(Application app) : base(app){ }
Exemplo n.º 12
0
 public SimpleChan(Application app) : base(app) { }
Exemplo n.º 13
0
            public ComplexArray(Application app, int size) : base(app)
            {
				 array = new Z.Pointer[size];
            }
Exemplo n.º 14
0
 public override __InterfaceMethod __CreateInterfaceMethod(Application application)
 {
     return new __ClassMethod(application);
 }