Code
Hub
Workspaces
Connect
Indexed graphs
Engine
MCP
copy
hub
/
github.com/statelyai/xstate
/ snakeMachine.ts
File
snakeMachine.ts
examples/snake-react/src/snakeMachine.ts:None–None ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
1
import
{ fromCallback, or, setup, assign } from
'xstate'
;
2
3
export
type
Dir =
'Up'
|
'Left'
|
'Down'
|
'Right'
;
4
export
type
Point = { x: number; y: number };
Callers
nothing calls this directly
Calls
13
setup
Function · 0.90
isSamePos
Function · 0.85
head
Function · 0.85
find
Function · 0.85
body
Function · 0.85
isOutsideGrid
Function · 0.85
assign
Function · 0.85
moveSnake
Function · 0.85
newApple
Function · 0.85
growSnake
Function · 0.85
createInitialContext
Function · 0.85
fromCallback
Function · 0.85
Tested by
no test coverage detected