public static PLSQLSpec ParseSpecFile(string pathAndFilename) { PLSQLSpecParsed spec = PLSQLSpecParser.ParseFile(pathAndFilename); return(ValidateParsedSpec(spec)); }
public static PLSQLSpec ParseString(string stringToParse) { PLSQLSpecParsed spec = PLSQLSpecParser.ParseString(stringToParse); return(ValidateParsedSpec(spec)); }