export default class SeepParserDefs { static INDENT:string = "\t"; static RAW_TEXT:string = "raw-text"; static QUOTED_TEXT:string = "qtext" // not implemented - no straightforward way to do this static LIST_FILTER:string = "list"; static EXISTS_FILTER:string = "exists"; static elementMayHaveNullMatch(e:any /*GElement*/):Boolean { return (e.asTree && e.childRule == null && e.childRuleName == null && e.prefixTokenValue == null && e.contentTokens == null) ; } // elementMayHaveNullMatch }