Home
last modified time | relevance | path

Searched refs:NextTokenBody (Results 1 – 1 of 1) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DMustache.cpp273 StringRef NextTokenBody = NextToken.TokenBody; in stripTokenAhead() local
275 if (NextTokenBody.starts_with("\r\n")) in stripTokenAhead()
276 NextToken.TokenBody = NextTokenBody.substr(2).str(); in stripTokenAhead()
277 else if (NextTokenBody.starts_with("\n")) in stripTokenAhead()
278 NextToken.TokenBody = NextTokenBody.substr(1).str(); in stripTokenAhead()