Exemple #1
0
 public void Setup(DencProgram program, ClassHeir classHeir, IStatement sparent,
                   ref StatementFlowInitializer flow)
 {
     parent = classHeir;
     Length = Wordsize.Number();
     flow.SetupStorage(this);
 }
Exemple #2
0
        public void Setup()
        {
            var flow = new StatementFlowInitializer(dencProg, null);

            foreach (var cl in dencProg.ClassList)
            {
                cl.Setup(dencProg, null, null, ref flow);
            }
        }
Exemple #3
0
 public void Setup(DencProgram program, ClassHeir classHeir, IStatement parent, ref StatementFlowInitializer flow)
 {
     throw new NotImplementedException();
 }
Exemple #4
0
 public void Setup(DencProgram program, ClassHeir classHeir, IStatement parent, ref StatementFlowInitializer flow)
 {
     flow.LastLabel = this;
 }
Exemple #5
0
 public void Setup(DencProgram program, ClassHeir classHeir, IStatement parent, ref StatementFlowInitializer flow)
 {
     flow.Radix = BaseSet.Number(10); // Radixen are always base 10
 }
Exemple #6
0
 public void Setup(DencProgram program, ClassHeir classHeir, IStatement parent, ref StatementFlowInitializer flow)
 {
     radix = flow.Radix;
 }