MCPcopy Create free account
hub / github.com/chibash/stone / TypedParser

Method TypedParser

src/stone/TypedParser.java:10–16  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

8 .sep("var").identifier(reserved).maybe(typeTag)
9 .sep("=").ast(expr);
10 public TypedParser() {
11 reserved.add(":");
12 param.maybe(typeTag);
13 def.reset().sep("def").identifier(reserved).ast(paramList)
14 .maybe(typeTag).ast(block);
15 statement.insertChoice(variable);
16 }
17}

Callers

nothing calls this directly

Calls 7

maybeMethod · 0.80
astMethod · 0.80
identifierMethod · 0.80
sepMethod · 0.80
resetMethod · 0.80
insertChoiceMethod · 0.80
addMethod · 0.45

Tested by

no test coverage detected