File tree Expand file tree Collapse file tree 2 files changed +4
-5
lines changed
Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -42,4 +42,3 @@ export function getValidLanguage (val: string): Language {
4242 }
4343 return null
4444}
45-
Original file line number Diff line number Diff line change 11'use strict'
22import tape from 'tape'
3- import { getValidLanguage } from " ../src/compiler/compiler-input" ;
4- import { Language } from " ../src/compiler/types" ;
3+ import { getValidLanguage } from ' ../src/compiler/compiler-input'
4+ import { Language } from ' ../src/compiler/types'
55
66tape ( 'compiler-input' , function ( t ) {
77 t . test ( 'getValidLanguage' , function ( st ) {
88 st . plan ( 9 )
99
10- const correctYul : Language = 'Yul' ;
11- const correctSolidity : Language = 'Solidity' ;
10+ const correctYul : Language = 'Yul'
11+ const correctSolidity : Language = 'Solidity'
1212
1313 const yulUpperCase = 'Yul'
1414 const yulLowerCase = 'yul'
You can’t perform that action at this time.
0 commit comments