(value: string, style?: string)
| 45 | |
| 46 | // Punctuator |
| 47 | export function p(value: string, style?: string): Rule { |
| 48 | return { |
| 49 | style: style || 'punctuation', |
| 50 | match: (token: Token) => |
| 51 | token.kind === 'Punctuation' && token.value === value, |
| 52 | }; |
| 53 | } |
no outgoing calls
no test coverage detected