Skip to content

Commit

Permalink
TSify sass (#4678)
Browse files Browse the repository at this point in the history
  • Loading branch information
mattgodbolt committed Feb 1, 2023
1 parent fadc61b commit 5e79968
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Expand Up @@ -22,10 +22,12 @@
// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
// POSSIBILITY OF SUCH DAMAGE.

import {PropertyGetter} from '../properties.interfaces';

import {AsmParser} from './asm-parser';

export class SassAsmParser extends AsmParser {
constructor(compilerProps) {
constructor(compilerProps?: PropertyGetter) {
super(compilerProps);

// These are for parsing the output of nvdisasm.
Expand Down
2 changes: 1 addition & 1 deletion test/utils.ts
Expand Up @@ -51,4 +51,4 @@ export function resolvePathFromTestRoot(...args: string[]): string {
}

// eslint-disable-next-line -- do not rewrite exports
export { chai, path, fs }
export {chai, path, fs};

0 comments on commit 5e79968

Please sign in to comment.