ToCode() public method

public ToCode ( ) : string[]
return string[]
Ejemplo n.º 1
0
        public void Procedure_TestBasic()
        {
            var input = @"

              procedure temp (a string, b string) {

            select *
            from download page 'http://test.com'

            }

            ";

            var compiler = new Compiler(input);
            var sources = compiler.ToCode();
        }