(value: AssignmentAnnotation)
| 36 | } |
| 37 | |
| 38 | export function formatPythonAssingment(value: AssignmentAnnotation): string { |
| 39 | return `→ ${formatPythonData(value.value, value.type)}` |
| 40 | } |
| 41 | |
| 42 | const UnaryOperators = { |
| 43 | not: { precedence: 70, type: OperatorType.Not, tokenType: TokenType.Keyword }, |
no test coverage detected