This repository has been archived on 2024-07-19. You can view files and clone it, but cannot push or open issues or pull requests.
ale/test/handler/test_solc_handler.vader
Karl Bartel dc42c0f948 Add support for solc Solidity compiler (#2648)
* Add support for `solc` Solidity compiler
* Set default value for `solidity_solc_options`
* Add test for solc handler
2019-09-19 19:40:00 +01:00

30 lines
1.1 KiB
Text

Before:
runtime ale_linters/solidity/solc.vim
After:
call ale#linter#Reset()
Execute(Check solc output parsing):
AssertEqual
\ [
\ {
\ 'lnum': 40,
\ 'col': 48,
\ 'text': 'This declaration shadows an existing declaration.',
\ 'type': 'W',
\ },
\ {
\ 'lnum': 23,
\ 'col': 16,
\ 'text': 'Member "getSinleSignature" not found or not visible after argument-dependent lookup in type(contract OneToN).',
\ 'type': 'E',
\ },
\ ],
\ ale_linters#solidity#solc#Handle(bufnr(''), [
\ 'raiden_contracts/data/source/raiden/Token.sol:40:48: Warning: This declaration shadows an existing declaration.',
\ ' function decimals() external view returns (uint8 decimals);',
\ ' ^------------^',
\ '/home/karl/raiden-contracts/raiden_contracts/data/source/test/OneToNInternalsTest.sol:23:16: Error: Member "getSinleSignature" not found or not visible after argument-dependent lookup in type(contract OneToN).',
\ ' return OneToN.getSinleSignature(signatures, i);',
\ ' ^----------------------^',
\ ])