mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-12 09:48:37 +12:00
More simple scalar scanning.
This commit is contained in:
parent
a3961d047f
commit
31f7db5a0d
5 changed files with 164 additions and 209 deletions
13
scanner.h
13
scanner.h
|
@ -43,13 +43,14 @@ namespace YAML
|
|||
|
||||
private:
|
||||
char GetChar();
|
||||
void EatLineBreak();
|
||||
void EatDocumentStart();
|
||||
void EatDocumentEnd();
|
||||
void Eat(int n = 1);
|
||||
std::string Peek(int n);
|
||||
|
||||
bool IsWhitespaceToBeEaten();
|
||||
bool IsLineBreak();
|
||||
bool IsBlank();
|
||||
void EatLineBreak();
|
||||
|
||||
bool IsWhitespaceToBeEaten(char ch);
|
||||
bool IsLineBreak(char ch);
|
||||
bool IsBlank(char ch);
|
||||
bool IsDocumentStart();
|
||||
bool IsDocumentEnd();
|
||||
bool IsBlockEntry();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue