Skip to content

Commit

Permalink
expose tokenizer
Browse files Browse the repository at this point in the history
  • Loading branch information
rui-mo committed Jul 25, 2023
1 parent e61fb2d commit 0c4dc1c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions velox/type/Tokenizer.h
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,8 @@ class Tokenizer {

std::unique_ptr<Subfield::PathElement> next();

bool isUnquotedPathCharacter(char c);

private:
const char DOT = '.';
const char QUOTE = '\"';
Expand Down Expand Up @@ -76,8 +78,6 @@ class Tokenizer {

void invalidSubfieldPath();

bool isUnquotedPathCharacter(char c);

bool isUnquotedSubscriptCharacter(char c);

void nextCharacter();
Expand Down

0 comments on commit 0c4dc1c

Please sign in to comment.