(source: string, url?: string)
| 187 | } |
| 188 | |
| 189 | public static fromSource(source: string, url?: string): CSSSource { |
| 190 | return new CSSSource(undefined, url, undefined, source); |
| 191 | } |
| 192 | |
| 193 | public static fromAST(ast: ReworkCSS.SyntaxTree, url?: string): CSSSource { |
| 194 | return new CSSSource(ast, url, undefined, undefined); |
no outgoing calls
no test coverage detected