(kind, decorators, modifiers, name, type, initializer)
| 22873 | return node; |
| 22874 | } |
| 22875 | function createBaseVariableLikeDeclaration(kind, decorators, modifiers, name, type, initializer) { |
| 22876 | var node = createBaseBindingLikeDeclaration(kind, decorators, modifiers, name, initializer); |
| 22877 | node.type = type; |
| 22878 | node.transformFlags |= propagateChildFlags(type); |
| 22879 | if (type) |
| 22880 | node.transformFlags |= 1 /* TransformFlags.ContainsTypeScript */; |
| 22881 | return node; |
| 22882 | } |
| 22883 | // |
| 22884 | // Literals |
| 22885 | // |
no test coverage detected
searching dependent graphs…