Creates a lambda node. @see LambdaNode
(String argument, @NotNull Node body)
| 234 | * @see LambdaNode |
| 235 | */ |
| 236 | public static LambdaNode lambda(String argument, @NotNull Node body) { |
| 237 | return new LambdaNode(argument, body); |
| 238 | } |
| 239 | |
| 240 | /** |
| 241 | * Creates a call node for a function by name. |