MCPcopy Index your code
hub / github.com/outerbase/studio / match

Method match

src/drivers/sqlite/sql-parse-table.ts:132–135  ·  view source on GitHub ↗
(value: string)

Source from the content-addressed store, hash-verified

130 }
131
132 match(value: string) {
133 if (this.end()) return false;
134 return this.read().toLowerCase() === value.toLowerCase();
135 }
136
137 matchTokens(values: string[]) {
138 return values.some((v) => this.read().toLowerCase() === v.toLowerCase());

Callers 13

parseCreateTriggerScriptFunction · 0.95
parseCreateViewScriptFunction · 0.95
consumeBlockMethod · 0.95
expectTokenMethod · 0.95
expectTokenOptionalMethod · 0.95
parseCreateTableScriptFunction · 0.95
parseColumnDefFunction · 0.45
parseConstraintConflictFunction · 0.45
parseColumnListFunction · 0.45
parseColumnConstraintFunction · 0.45
parseFTS5Function · 0.45
parseTableOptionFunction · 0.45

Calls 2

endMethod · 0.95
readMethod · 0.95

Tested by

no test coverage detected