scrap comments in favor of self-documentation
This commit is contained in:
		@@ -179,9 +179,8 @@ export class Compiler {
 | 
				
			|||||||
            const solcVersion = _.isUndefined(this._solcVersionIfExists)
 | 
					            const solcVersion = _.isUndefined(this._solcVersionIfExists)
 | 
				
			||||||
                ? semver.maxSatisfying(_.keys(binPaths), parseSolidityVersionRange(contractSource.source))
 | 
					                ? semver.maxSatisfying(_.keys(binPaths), parseSolidityVersionRange(contractSource.source))
 | 
				
			||||||
                : this._solcVersionIfExists;
 | 
					                : this._solcVersionIfExists;
 | 
				
			||||||
            if (_.isUndefined(versionToInputs[solcVersion])) {
 | 
					            const isFirstContractWithThisVersion = _.isUndefined(versionToInputs[solcVersion]);
 | 
				
			||||||
                // no inputs batched yet for this version.
 | 
					            if (isFirstContractWithThisVersion) {
 | 
				
			||||||
                // prepare object to hold this batch.
 | 
					 | 
				
			||||||
                versionToInputs[solcVersion] = {
 | 
					                versionToInputs[solcVersion] = {
 | 
				
			||||||
                    standardInput: {
 | 
					                    standardInput: {
 | 
				
			||||||
                        language: 'Solidity',
 | 
					                        language: 'Solidity',
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user