(item: unknown)
| 963 | } as const; |
| 964 | |
| 965 | export function isTypeDef(item: unknown): item is TypeDef { |
| 966 | return reflection.isInstance(item, TypeDef.$type); |
| 967 | } |
| 968 | |
| 969 | export interface UnaryExpr extends langium.AstNode { |
| 970 | readonly $container: Argument | ArrayExpr | AttributeArg | BinaryExpr | FieldInitializer | FunctionDecl | MemberAccessExpr | ReferenceArg | UnaryExpr; |
no outgoing calls
no test coverage detected