Home
last modified time | relevance | path

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

/llvm-project-15.0.7/flang/lib/Parser/
H A Dparsing.cpp215 ParseState parseState{cooked()}; in DumpCookedChars() local
216 parseState.set_inFixedForm(options_.isFixedForm).set_userState(&userState); in DumpCookedChars()
217 while (std::optional<const char *> p{parseState.GetNextChar()}) { in DumpCookedChars()
235 ParseState parseState{cooked()}; in Parse() local
236 parseState.set_inFixedForm(options_.isFixedForm).set_userState(&userState); in Parse()
237 parseTree_ = program.Parse(parseState); in Parse()
239 !parseState.anyErrorRecovery() || parseState.messages().AnyFatalError()); in Parse()
240 consumedWholeFile_ = parseState.IsAtEnd(); in Parse()
241 messages_.Annex(std::move(parseState.messages())); in Parse()
242 finalRestingPlace_ = parseState.GetLocation(); in Parse()