public void CreateArgument(string name, string type, Argument.PassingType pass, bool is_array)
        {
            Debug.Assert(this.compileInProgress == true);
            Debug.Assert(this.currentScriptBase != null);

            Argument arg = new Argument(currentScriptBase, name, type, pass, is_array);
        }
 public void CreateArgument(string name, string type, Argument.PassingType pass)
 {
     CreateArgument(name, type, pass, false);
 }