MCPcopy
hub / github.com/codeaashu/claude-code / feed

Function feed

src/ink/termio/tokenize.ts:63–74  ·  view source on GitHub ↗
(input: string)

Source from the content-addressed store, hash-verified

61
62 return {
63 feed(input: string): Token[] {
64 const result = tokenize(
65 input,
66 currentState,
67 currentBuffer,
68 false,
69 x10Mouse,
70 )
71 currentState = result.state.state
72 currentBuffer = result.state.buffer
73 return result.tokens
74 },
75
76 flush(): Token[] {
77 const result = tokenize('', currentState, currentBuffer, true, x10Mouse)

Callers

nothing calls this directly

Calls 1

tokenizeFunction · 0.70

Tested by

no test coverage detected