(scope: StyleScope, cssFileName?: string, cssString?: string, css?: string)
| 181 | } |
| 182 | |
| 183 | private setScopeProperty(scope: StyleScope, cssFileName?: string, cssString?: string, css?: string): void { |
| 184 | if (cssFileName !== undefined) { |
| 185 | scope.addCssFile(cssFileName); |
| 186 | } else if (cssString !== undefined) { |
| 187 | scope.addCss(cssString); |
| 188 | } else if (css !== undefined) { |
| 189 | scope.css = css; |
| 190 | } |
| 191 | } |
| 192 | |
| 193 | onLoaded() { |
| 194 | if (!this.isLoaded) { |
nothing calls this directly
no test coverage detected