mirror of https://github.com/embarklabs/embark.git
fix: allow to debug instanceOf contracts
This commit is contained in:
parent
518d319917
commit
1e4eaa5fb6
|
@ -35,6 +35,7 @@ class EditorContainer extends React.Component {
|
|||
|
||||
this.state = {
|
||||
currentAsideTab: {},
|
||||
debuggingContract: null,
|
||||
showHiddenFiles: false,
|
||||
currentFile: this.props.currentFile,
|
||||
editorHeight: this.DEFAULT_HEIGHT,
|
||||
|
@ -78,11 +79,11 @@ class EditorContainer extends React.Component {
|
|||
this.setState({currentFile: this.props.currentFile});
|
||||
}
|
||||
|
||||
if(this.props.contracts && this.props.transaction !== prevProps.transaction && this.props.transaction) {
|
||||
if(this.props.contracts.length && this.props.transaction) {
|
||||
const debuggingContract = this.props.contracts.find(contract => contract.address === this.props.transaction.to)
|
||||
if (debuggingContract) {
|
||||
if (this.state.debuggingContract !== debuggingContract) {
|
||||
const editorWidth = this.getNewEditorWidth(OPERATIONS.LESS)
|
||||
this.setState({currentAsideTab: TextEditorToolbarTabs.Debugger, editorWidth})
|
||||
this.setState({currentAsideTab: TextEditorToolbarTabs.Debugger, editorWidth, debuggingContract})
|
||||
this.props.fetchFile({path: debuggingContract.path});
|
||||
}
|
||||
}
|
||||
|
|
|
@ -234,7 +234,7 @@ export function getDebuggerInfo(state) {
|
|||
}
|
||||
|
||||
export function getDebuggerLine(state) {
|
||||
if (!state.debuggerInfo.sources) return;
|
||||
if (!state.debuggerInfo.sources || !state.debuggerInfo.sources.lineColumnPos[0]) return;
|
||||
return state.debuggerInfo.sources.lineColumnPos[0].start.line + 1;
|
||||
}
|
||||
|
||||
|
|
|
@ -423,6 +423,9 @@ class ContractsManager {
|
|||
}));
|
||||
}
|
||||
|
||||
contract.path = parentContract.path;
|
||||
contract.originalFilename = parentContract.originalFilename;
|
||||
contract.filename = parentContract.filename;
|
||||
contract.code = parentContract.code;
|
||||
contract.runtimeBytecode = parentContract.runtimeBytecode;
|
||||
contract.realRuntimeBytecode = (parentContract.realRuntimeBytecode || parentContract.runtimeBytecode);
|
||||
|
|
Loading…
Reference in New Issue