diff options
Diffstat (limited to 'lib/compilers/ocaml.js')
-rw-r--r-- | lib/compilers/ocaml.js | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/lib/compilers/ocaml.js b/lib/compilers/ocaml.js index 1bbd9a6cf..cae0e34c3 100644 --- a/lib/compilers/ocaml.js +++ b/lib/compilers/ocaml.js @@ -22,12 +22,14 @@ // ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE // POSSIBILITY OF SUCH DAMAGE. -import { BaseCompiler } from '../base-compiler'; +import {BaseCompiler} from '../base-compiler'; -import { PascalParser } from './argument-parsers'; +import {PascalParser} from './argument-parsers'; export class OCamlCompiler extends BaseCompiler { - static get key() { return 'ocaml'; } + static get key() { + return 'ocaml'; + } constructor(compilerInfo, env) { super(compilerInfo, env); |