mirror of
https://github.com/GayPizzaSpecifications/pork.git
synced 2025-08-07 07:01:32 +00:00
language: prelude and internal functions, and varargs support
This commit is contained in:
@ -14,6 +14,7 @@ digraph A {
|
||||
type_InfixOperation [shape=box,label="InfixOperation"]
|
||||
type_BooleanLiteral [shape=box,label="BooleanLiteral"]
|
||||
type_FunctionCall [shape=box,label="FunctionCall"]
|
||||
type_ArgumentSpec [shape=box,label="ArgumentSpec"]
|
||||
type_FunctionDefinition [shape=box,label="FunctionDefinition"]
|
||||
type_If [shape=box,label="If"]
|
||||
type_ImportDeclaration [shape=box,label="ImportDeclaration"]
|
||||
@ -70,8 +71,10 @@ digraph A {
|
||||
type_InfixOperation -> type_InfixOperator [style=dotted]
|
||||
type_FunctionCall -> type_Symbol [style=dotted]
|
||||
type_FunctionCall -> type_Expression [style=dotted]
|
||||
type_ArgumentSpec -> type_Symbol [style=dotted]
|
||||
type_FunctionDefinition -> type_DefinitionModifiers [style=dotted]
|
||||
type_FunctionDefinition -> type_Symbol [style=dotted]
|
||||
type_FunctionDefinition -> type_ArgumentSpec [style=dotted]
|
||||
type_FunctionDefinition -> type_Block [style=dotted]
|
||||
type_FunctionDefinition -> type_Native [style=dotted]
|
||||
type_If -> type_Expression [style=dotted]
|
||||
|
Reference in New Issue
Block a user