MCPcopy Index your code
hub / github.com/codeaashu/claude-code / makeLexer

Function makeLexer

src/utils/bash/bashParser.ts:134–143  ·  view source on GitHub ↗
(src: string)

Source from the content-addressed store, hash-verified

132}
133
134function makeLexer(src: string): Lexer {
135 return {
136 src,
137 len: src.length,
138 i: 0,
139 b: 0,
140 heredocs: [],
141 byteTable: null,
142 }
143}
144
145/** Advance one JS char, updating byte offset for UTF-8. */
146function advance(L: Lexer): void {

Callers 1

parseSourceFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected