(node *ast.Node)
| 2636 | } |
| 2637 | |
| 2638 | func (c *Checker) shouldCheckErasableSyntax(node *ast.Node) bool { |
| 2639 | return c.compilerOptions.ErasableSyntaxOnly.IsTrue() && !ast.IsInJSFile(node) |
| 2640 | } |
| 2641 | |
| 2642 | func (c *Checker) checkParameter(node *ast.Node) { |
| 2643 | // Grammar checking |
no test coverage detected