(path: ObjectPath, context: InclusionContext)
| 43 | } |
| 44 | |
| 45 | includePath(path: ObjectPath, context: InclusionContext): void { |
| 46 | if (!this.included) { |
| 47 | this.included = true; |
| 48 | if (this.variable !== null) { |
| 49 | this.scope.context.includeVariableInModule(this.variable, path, context); |
| 50 | } |
| 51 | } else if (path.length > 0) { |
| 52 | this.variable?.includePath(path, context); |
| 53 | } |
| 54 | } |
| 55 | |
| 56 | render( |
| 57 | code: MagicString, |
nothing calls this directly
no test coverage detected