chore: Fix remaining necessary casts

This commit is contained in:
Fabio Berger
2018-10-17 17:36:21 +01:00
parent a31f3b542f
commit 87fabbb943
2 changed files with 9 additions and 6 deletions

View File

@@ -1,4 +1,4 @@
import { AbiDefinition, AbiType, ContractAbi, DataItem } from 'ethereum-types';
import { AbiDefinition, AbiType, ConstructorAbi, ContractAbi, DataItem } from 'ethereum-types';
import * as _ from 'lodash';
import * as web3Abi from 'web3-eth-abi';
@@ -7,7 +7,8 @@ export const encoder = {
const constructorTypes: string[] = [];
_.each(abi, (element: AbiDefinition) => {
if (element.type === AbiType.Constructor) {
_.each(element.inputs, (input: DataItem) => {
const constuctorAbi = element as ConstructorAbi;
_.each(constuctorAbi.inputs, (input: DataItem) => {
constructorTypes.push(input.type);
});
}

View File

@@ -324,19 +324,21 @@ export class SolDoc {
switch (abiDefinition.type) {
case 'constructor':
docSection.constructors.push(
this._genConstructorDoc(contractName, abiDefinition, compiledContract.devdoc),
this._genConstructorDoc(contractName, abiDefinition as ConstructorAbi, compiledContract.devdoc),
);
break;
case 'event':
(docSection.events as Event[]).push(SolDoc._genEventDoc(abiDefinition));
(docSection.events as Event[]).push(SolDoc._genEventDoc(abiDefinition as EventAbi));
// note that we're not sending devdoc to this._genEventDoc().
// that's because the type of the events array doesn't have any fields for documentation!
break;
case 'function':
docSection.methods.push(this._genMethodDoc(abiDefinition, compiledContract.devdoc));
docSection.methods.push(this._genMethodDoc(abiDefinition as MethodAbi, compiledContract.devdoc));
break;
case 'fallback':
docSection.methods.push(SolDoc._genFallbackDoc(abiDefinition, compiledContract.devdoc));
docSection.methods.push(
SolDoc._genFallbackDoc(abiDefinition as FallbackAbi, compiledContract.devdoc),
);
break;
default:
throw new Error(