File tree 3 files changed +3
-8
lines changed
3 files changed +3
-8
lines changed Original file line number Diff line number Diff line change @@ -230,9 +230,7 @@ class App {
230
230
async runCompileCommand ( ) {
231
231
232
232
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)...` ) ;
236
234
shell . cd ( this . coverageDir ) ;
237
235
238
236
let Config = require ( "truffle-config" ) ;
@@ -243,9 +241,6 @@ class App {
243
241
} ) ;
244
242
await new Promise ( resolve => Contracts . compile ( config , resolve ) ) ;
245
243
246
- //shell.exec(command);
247
- //this.testsErrored = shell.error();
248
-
249
244
shell . cd ( './..' ) ;
250
245
} catch ( err ) {
251
246
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 ' ) ;
2
2
const preprocessor = require ( './preprocessor' ) ;
3
3
const injector = require ( './injector' ) ;
4
4
const parse = require ( './parse' ) ;
Original file line number Diff line number Diff line change 1
1
const SolExplore = require ( 'sol-explore' ) ;
2
- const SolidityParser = require ( 'solidity-parser' ) ;
2
+ const SolidityParser = require ( 'solidity-parser-sc ' ) ;
3
3
4
4
const crRegex = / [ \r \n ] + $ / g;
5
5
/**
You can’t perform that action at this time.
0 commit comments