File tree Expand file tree Collapse file tree 3 files changed +3
-8
lines changed Expand file tree Collapse file tree 3 files changed +3
-8
lines changed Original file line number Diff line number Diff line change @@ -230,9 +230,7 @@ class App {
230230 async runCompileCommand ( ) {
231231
232232 try {
233- //const defaultCommand = `truffle compile ${this.network} ${this.silence}`;
234- //const command = this.compileCommand || defaultCommand;
235- //this.log(`Running: ${command}\n(this can take a few seconds)...`);
233+ this . log ( `Running: truffle compile\n(this can take a few seconds)...` ) ;
236234 shell . cd ( this . coverageDir ) ;
237235
238236 let Config = require ( "truffle-config" ) ;
@@ -243,9 +241,6 @@ class App {
243241 } ) ;
244242 await new Promise ( resolve => Contracts . compile ( config , resolve ) ) ;
245243
246- //shell.exec(command);
247- //this.testsErrored = shell.error();
248-
249244 shell . cd ( './..' ) ;
250245 } catch ( err ) {
251246 const msg =
Original file line number Diff line number Diff line change 1- const SolidityParser = require ( 'solidity-parser' ) ;
1+ const SolidityParser = require ( 'solidity-parser-sc ' ) ;
22const preprocessor = require ( './preprocessor' ) ;
33const injector = require ( './injector' ) ;
44const parse = require ( './parse' ) ;
Original file line number Diff line number Diff line change 11const SolExplore = require ( 'sol-explore' ) ;
2- const SolidityParser = require ( 'solidity-parser' ) ;
2+ const SolidityParser = require ( 'solidity-parser-sc ' ) ;
33
44const crRegex = / [ \r \n ] + $ / g;
55/**
You can’t perform that action at this time.
0 commit comments