(item: unknown)
| 915 | } as const; |
| 916 | |
| 917 | export function isStringLiteral(item: unknown): item is StringLiteral { |
| 918 | return reflection.isInstance(item, StringLiteral.$type); |
| 919 | } |
| 920 | |
| 921 | export interface ThisExpr extends langium.AstNode { |
| 922 | readonly $container: Argument | ArrayExpr | AttributeArg | BinaryExpr | FieldInitializer | FunctionDecl | MemberAccessExpr | ReferenceArg | UnaryExpr; |
no outgoing calls
no test coverage detected