You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Again, filing this issue based on discussion in #555. Currently Truffle doesn't support Solidity <0.4.9 because the (wrapped) compiler output doesn't give file paths, but rather just groups every contract under the empty path. Over on #555, @cameel suggested it might be possible for solc/wrapper to repair this? I certainly hadn't considered that possibility! Well, just in case it is, I'm filing this issue as suggested. :)
The text was updated successfully, but these errors were encountered:
This one is tricky. The problem is that the information is not there. I think it would be possible to reconstruct it based on the input as long as it's unambiguous. If you have multiple contracts with the same name in the input though, it's not going to be fixable - unless there's some other place in the output that does have paths. I'd have to take a look at the output format on this specific version.
@chriseth says that this is ok in the wrapper as long as it's not too complicated so I'll try to add a workaround when I have some time to work in this. In case anyone else would like to take this, PRs are welcome :)
Again, filing this issue based on discussion in #555. Currently Truffle doesn't support Solidity <0.4.9 because the (wrapped) compiler output doesn't give file paths, but rather just groups every contract under the empty path. Over on #555, @cameel suggested it might be possible for
solc/wrapper
to repair this? I certainly hadn't considered that possibility! Well, just in case it is, I'm filing this issue as suggested. :)The text was updated successfully, but these errors were encountered: