While.AST.Statements.Block.Block C# (CSharp) Method

Block() public method

public Block ( VariableDeclarationSequence vars, StatementSequence stmts ) : System
vars While.AST.Sequences.VariableDeclarationSequence
stmts While.AST.Sequences.StatementSequence
return System
        public Block(VariableDeclarationSequence vars, StatementSequence stmts)
        {
            AddChild(vars);
            AddChild(stmts);
        }