(node)
| 80438 | } |
| 80439 | } |
| 80440 | function checkPropertySignature(node) { |
| 80441 | if (ts.isPrivateIdentifier(node.name)) { |
| 80442 | error(node, ts.Diagnostics.Private_identifiers_are_not_allowed_outside_class_bodies); |
| 80443 | } |
| 80444 | return checkPropertyDeclaration(node); |
| 80445 | } |
| 80446 | function checkMethodDeclaration(node) { |
| 80447 | // Grammar checking |
| 80448 | if (!checkGrammarMethod(node)) |
no test coverage detected