aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests
Commit message (Expand)AuthorAgeFilesLines
* Merge pull request #5550 from ethereum/moveSomeTestschriseth2018-11-3011-0/+0
|\
| * Move inline array tests.chriseth2018-11-3011-0/+0
* | Merge pull request #5548 from ethereum/fixMemberAccesschriseth2018-11-301-0/+7
|\ \
| * | Fix bug related to state variables of function type accessed via base contract.chriseth2018-11-301-0/+7
| |/
* / Disallow inline arrays of mapping type.chriseth2018-11-301-0/+8
|/
* Report deprecation error on functions sha3 and suicide also without call.Leonardo Alt2018-11-297-2/+58
* Fix ICE when function type struct parameter has field of non-existent typeLeonardo Alt2018-11-292-0/+19
* Tests.chriseth2018-11-284-0/+32
* Merge pull request #5382 from ethereum/libraryMappingPublicchriseth2018-11-277-14/+4
|\
| * Allow mapping arguments for public and external library functions.Daniel Kirchner2018-11-267-14/+4
* | Changelog entry and tests.chriseth2018-11-262-0/+11
* | Tests.Daniel Kirchner2018-11-268-0/+114
|/
* Merge pull request #5486 from ethereum/allowExternalPublicOverridechriseth2018-11-263-1/+17
|\
| * Changelog entry and tests.chriseth2018-11-263-1/+17
* | Adapting tests to Scanner's lexical error diagnostics change.Christian Parpart2018-11-247-7/+7
* | adapt to latest code changesLazaridis2018-11-247-7/+7
|/
* Add assert and tests for bound functionsLeonardo Alt2018-11-223-0/+24
* Ignore unimplemented functions for storage returns.Daniel Kirchner2018-11-132-0/+8
* Refactor of bool TypeChecker::visit(FunctionCall const& _functionCall).Kristofer Peterson2018-11-103-1/+11
* Merge pull request #5351 from ethereum/functionTypeConversionchriseth2018-11-0813-0/+128
|\
| * Function type conversion test cases.Daniel Kirchner2018-11-0813-0/+128
* | Fix negative denominator in ``boost::rational`` during exponentiation.Daniel Kirchner2018-11-061-0/+5
|/
* Fixes crash while encoding too large arrays.Erik Kundt2018-10-303-0/+26
* Added some tests.chriseth2018-10-244-0/+44
* Merge pull request #5208 from mestorlx/bug4156chriseth2018-10-153-0/+43
|\
| * Updated MAXIMUM_STRING_DISTANCE to non static maximumStringDistance taking in...mestorlx2018-10-133-0/+43
* | Fixes invalid function calls to literals inside tuple assignment's LHS.Christian Parpart2018-10-152-0/+16
|/
* Adds syntax tests for array index access.Erik Kundt2018-10-115-0/+31
* Merge pull request #5195 from ethereum/unsigned-array-indexchriseth2018-10-114-0/+40
|\
| * Fixes crash on non-unsigned array index.Erik Kundt2018-10-114-0/+40
* | Improved error message for lookup in function types.Martin Diz2018-10-105-0/+85
|/
* Fixes large rational number literals being wrongly interpreted.Christian Parpart2018-10-092-0/+18
* Fixes #5051 (introduced in #4684), effectively allowing underscores in addres...Christian Parpart2018-10-021-0/+1
* Merge pull request #5061 from ethereum/fixedSizeArrayLengthchriseth2018-09-264-2/+32
|\
| * Moves length check to reference resolver.Erik Kundt2018-09-225-8/+32
| * Disallows fixed-size multidim. arrays with zero-length.Erik Kundt2018-09-221-0/+6
* | Merge pull request #5003 from herrBez/cleanUpdatedchriseth2018-09-2412-0/+106
|\ \
| * | Add syntax tests to augment the test coverage ofherrBez2018-09-2112-0/+106
| |/
* / Make non-payable default for conversion to address.chriseth2018-09-206-0/+40
|/
* Do not set to ref for explicit conversion and add assertion for arrayliangdzou2018-09-147-0/+67
* Add payable and non-payable state mutability to AddressType.Daniel Kirchner2018-09-1331-7/+263
* Update test suite to use address payable.Daniel Kirchner2018-09-127-1/+5
* Accept ``address payable`` during parsing.Daniel Kirchner2018-09-1119-1/+224
* Merge pull request #4872 from bakaoh/issue4716chriseth2018-09-061-0/+8
|\
| * Fix #4716: Crash when array index value is too largebakaoh2018-09-051-0/+8
* | Merge pull request #4590 from ethereum/msgValueModifierchriseth2018-09-056-1/+29
|\ \
| * | Turn warning into error.chriseth2018-09-043-3/+3
| * | Warns if modifier uses msg.value in non-payable function.Erik Kundt2018-09-045-0/+28
| |/
* | Merge pull request #4895 from ethereum/abidecodesinglechriseth2018-09-052-0/+12
|\ \
| * | Fix abi.decode returning single value.chriseth2018-09-052-0/+12
* | | Merge pull request #4866 from bakaoh/issue4743chriseth2018-09-0538-45/+45
|\ \ \ | |/ / |/| |
| * | Update test to correct source location for nameless parametersbakaoh2018-08-3138-45/+45
| |/
* | Merge pull request #4888 from ethereum/disallow_single_statement_vardecl_if_w...chriseth2018-09-045-0/+58
|\ \
| * | Changed error message and added testsLeonardo Alt2018-09-045-0/+58
| |/
* / Add return data to bare calls.Daniel Kirchner2018-09-047-37/+51
|/
* Dynamic type as mapping key returns error instead of assertion failLeonardo Alt2018-08-166-0/+34
* Review suggestionsLeonardo Alt2018-08-153-3/+3
* Disallow indexed reference types in events when using ABIEncoderV2Leonardo Alt2018-08-156-0/+41
* Merge pull request #4390 from ethereum/abidecodechriseth2018-08-158-0/+67
|\
| * Add abi.decode(bytes data, (...))chriseth2018-08-158-0/+67
* | Fixes #4718: High CPU usage when using large variable namesbakaoh2018-08-152-0/+14
|/
* Update tests.chriseth2018-08-1559-109/+173
* New test cases.mingchuan2018-08-1520-0/+126
* Update testsChase McDermott2018-08-151-1/+1
* Merge pull request #4765 from ethereum/fixes-issue-4673chriseth2018-08-141-0/+4
|\
| * Fixes issue where computing storage size for a number would take too long.Christian Parpart2018-08-141-0/+4
* | Add implicit convertibility to function pointer with higher state mutabilityJesse Busman2018-08-144-0/+178
* | Merge pull request #4782 from ethereum/encodePackedArrayOfStructschriseth2018-08-142-0/+19
|\ \
| * | Tests.chriseth2018-08-102-0/+19
| |/
* | Adds support for structs in interfaces.Christian Parpart2018-08-141-3/+0
* | Merge pull request #4777 from ethereum/typeConversionMemorychriseth2018-08-143-2/+7
|\ \
| * | Defaul data location for type conversions is memory.chriseth2018-08-133-2/+7
| |/
* | Merge pull request #4798 from ethereum/mappingArgumentsAndReturnschriseth2018-08-1332-5/+186
|\ \
| * | Add tests for mappings in function types.Daniel Kirchner2018-08-134-0/+20
| * | Allow mappings of arrays as arguments and return values of internal functions.Daniel Kirchner2018-08-1311-0/+70
| * | Consider mappings return values in control flow analysis.Daniel Kirchner2018-08-134-0/+20
| * | Allow mapping arguments and return values in all internal functions.Daniel Kirchner2018-08-133-9/+0
| * | Allow mapping arguments and return values in internal library functions.Daniel Kirchner2018-08-1312-0/+80
| |/
* / Disallow ambiguous conversions between number literals and bytesXX types.Daniel Kirchner2018-08-1314-17/+200
|/
* Merge pull request #4684 from ethereum/underscores_in_numeric_literalschriseth2018-08-096-0/+72
|\
| * Cleanup & polish numbers-with-underscores parsing, also improving tests.Christian Parpart2018-08-086-0/+72
* | Provide nicer error message when referencing overloaded referencesAlex Beregszaszi2018-08-081-0/+11
* | Merge pull request #4740 from ethereum/enforceNumberOfReturnValueschriseth2018-08-089-28/+87
|\ \
| * | Add back lost test case to a more reasonable location.Daniel Kirchner2018-08-081-0/+3
| * | Update and extend tests for return expressions.Daniel Kirchner2018-08-088-28/+84
| |/
* / Remove remaining instances of ``fillRight`` left over from tuple wildcards as...Daniel Kirchner2018-08-083-20/+11
|/
* Merge pull request #4731 from ethereum/interface-enumchriseth2018-08-076-1/+48
|\
| * Add more syntax tests for enums and interfaces/librariesAlex Beregszaszi2018-08-075-0/+48
| * Allow enums in interfacesAlex Beregszaszi2018-08-071-1/+0
* | More precise error message if using non-variables with _slot/_offsetAlex Beregszaszi2018-08-071-1/+1
* | Properly handle invalid references used together with _slot and _offset.Alex Beregszaszi2018-08-071-0/+9
|/
* Do not crash on using _slot and _offset suffixes on their ownAlex Beregszaszi2018-08-072-0/+18
* Merge pull request #4689 from ethereum/cleanup-050-testschriseth2018-08-0623-106/+11
|\
| * Cleanup 0.5.0 test casesAlex Beregszaszi2018-08-0623-106/+11
* | Merge pull request #4671 from ethereum/mappingTupleAssignmentchriseth2018-08-067-12/+77
|\ \ | |/ |/|
| * Allow assignments to local variables of mapping types.Daniel Kirchner2018-08-034-4/+35
| * Disallow assignments to mappings within tuple assignments.Daniel Kirchner2018-08-034-12/+46
* | Merge pull request #4644 from ethereum/event_struct_errorchriseth2018-08-067-0/+27
|\ \
| * | Disallow structs in events without ABIEncoderV2Leonardo Alt2018-08-037-0/+27
| |/
* | Merge pull request #4681 from ethereum/var-suggestion-crashchriseth2018-08-061-0/+12
|\ \
| * | Fix declaration suggestion for var with different number of componentsAlex Beregszaszi2018-08-041-0/+12
| |/
* | Merge pull request #4412 from ethereum/v050-reference-resolver-errorTypeForLooseChristian Parpart2018-08-0414-63/+13
|\ \ | |/ |/|
| * Update tests to remove support for loose assemblyChristian Parpart2018-08-027-22/+8
| * Disallow loos assembly in Solidity by permanently setting it to SyntaxError (...Christian Parpart2018-08-0212-47/+11
* | Turn warning about uninitialized storage returns into an error.Daniel Kirchner2018-08-0320-177/+177
|/
* Merge pull request #4399 from ethereum/contractWhitespaceAlex Beregszaszi2018-08-029-14/+14
|\
| * Remove trailing whitespace in all contract files.Daniel Kirchner2018-08-029-14/+14
* | Add additional test cases.Daniel Kirchner2018-08-012-0/+10
* | Do not exclude public state variables when looking for conflicting declarations.Daniel Kirchner2018-08-014-0/+27
|/
* Merge pull request #4378 from ethereum/noBaseWithoutArgumentsAlex Beregszaszi2018-08-012-1/+10
|\
| * Correctly determine whether base constructor is called without parentheses.chriseth2018-08-011-0/+9
| * Disallow calling base constructors without arguments.chriseth2018-08-011-1/+1
* | Adds positive/negative tests for checking error on cyclic dependency checker ...Christian Parpart2018-08-014-0/+791
|/
* Fix tests regarding contract type conversion.chriseth2018-08-011-1/+2
* Disallow conversion between unrelated contract types.chriseth2018-08-0110-5/+69
* Merge pull request #4507 from ethereum/v050-var-keyword-trace-removalsAlex Beregszaszi2018-08-015-0/+40
|\
| * Ensures an empty use of var keyword is caught with the proper error message.Christian Parpart2018-08-015-0/+40
* | Merge pull request #4625 from ethereum/pragma-cleanupAlex Beregszaszi2018-07-315-16/+10
|\ \
| * | Remove unnecesary version pragma from some syntax testsAlex Beregszaszi2018-07-315-16/+10
* | | Fix crash when FunctionType has undeclared type as parameterLeonardo Alt2018-07-317-11/+36
|/ /
* | Merge pull request #4556 from ethereum/library-data-locationsAlex Beregszaszi2018-07-266-0/+22
|\ \
| * | Add tests for data locations within librariesAlex Beregszaszi2018-07-256-0/+22
* | | Merge pull request #4562 from ethereum/parser-testsAlex Beregszaszi2018-07-2512-0/+61
|\ \ \
| * | | Add syntax tests for import statementsAlex Beregszaszi2018-07-255-0/+15
| * | | Add syntax test for illegal pragma keyAlex Beregszaszi2018-07-251-0/+4
| * | | Add syntax test for location specifier redeclarationsAlex Beregszaszi2018-07-253-0/+23
| * | | Add syntax test for empty emit statementAlex Beregszaszi2018-07-251-0/+7
| * | | Add syntax tests for assembly block type (evmasm)Alex Beregszaszi2018-07-252-0/+12
| |/ /
* | | Add more tests for inlineasm/AsmAnalyzerAlex Beregszaszi2018-07-255-0/+60
* | | Add more comprehensive tests for embedded inline assembly LValue/RValue accessAlex Beregszaszi2018-07-257-0/+74
|/ /
* | Add comprehensive syntax tests for indexed accessAlex Beregszaszi2018-07-256-0/+46
* | Add syntax tests for unknown / invalid pragmaAlex Beregszaszi2018-07-252-0/+6
* | Merge pull request #4527 from ethereum/mappingEnforceStorageAlex Beregszaszi2018-07-248-9/+36
|\ \
| * | Enforces data location of local mappings to storage.Erik Kundt2018-07-248-9/+36
* | | Disallow functions without implementation to use modifiers. This was already ...Christian Parpart2018-07-242-3/+3
| |/ |/|
* | Merge pull request #4439 from ethereum/address_memberschriseth2018-07-1924-118/+19
|\ \
| * | Changes in ExpressionCompilerLeonardo Alt2018-07-191-0/+6
| * | Removing tests that are not useful anymoreLeonardo Alt2018-07-183-43/+0
| * | Add suggestion to error messageLeonardo Alt2018-07-1712-12/+12
| * | Address members not accessible by contract instanceLeonardo Alt2018-07-1723-78/+16
* | | Adds warning if function is shadowing a contract.Erik Kundt2018-07-182-5/+10
* | | Adjusts syntax tests to new constructor syntax.Erik Kundt2018-07-1829-116/+3
| |/ |/|
* | Adds comment about reasoning behind syntax test.Erik Kundt2018-07-181-3/+5
* | Removes obsolete syntax tests.Erik Kundt2018-07-182-10/+0
* | Suggests external for fallback and interface functions.chriseth2018-07-187-6/+16
* | Adjusts tests to expect type errors on default visibility.Erik Kundt2018-07-186-15/+4
|/
* Add missing period in the end of error messagesLeonardo Alt2018-07-1633-33/+33
* Merge pull request #4481 from ethereum/disallow-throwchriseth2018-07-163-18/+1
|\
| * Deprecate the throw statementAlex Beregszaszi2018-07-163-18/+1
* | Specifies visibility in syntax test.Erik Kundt2018-07-161-3/+3
|/
* enforce interface-functions to be external-declaredChristian Parpart2018-07-169-14/+10
* Merge pull request #4501 from ethereum/recursiveStructsWithFixedArrayschriseth2018-07-1312-0/+139
|\
| * Add test cases.Daniel Kirchner2018-07-1312-0/+139
* | Update tests.Daniel Kirchner2018-07-1321-100/+155
|/
* Merge pull request #4437 from ethereum/report-empty-var-declschriseth2018-07-133-0/+22
|\
| * Generates a syntax error when declaring a variable declaration's LHS has no n...Christian Parpart2018-07-123-0/+22
* | Update test wrt requiring storage locations.Daniel Kirchner2018-07-129-40/+25
|/
* Added default data locations to parameters for syntax tests.Chase McDermott2018-07-1238-83/+83
* Merge pull request #4443 from ethereum/double_var_decl_fixchriseth2018-07-123-0/+34
|\
| * Fix crash for double variable declaration in the same scope.Leonardo Alt2018-07-113-0/+34
* | Merge pull request #4480 from ethereum/fixZeroWithExponentchriseth2018-07-122-23/+29
|\ \
| * | Split test case into failing and succeeding case.Daniel Kirchner2018-07-112-24/+29
| * | Fix literals with exponents with mantissa of zero.Daniel Kirchner2018-07-111-0/+1
* | | Merge pull request #4404 from ethereum/v050-var-keyword-suggestChristian Parpart2018-07-111-0/+23
|\ \ \ | |/ / |/| |
| * | semantics: Suggest auto-deduced type when user declares variable with `var` k...Christian Parpart2018-07-111-0/+23
* | | Merge pull request #4454 from ethereum/constructorArgCountchriseth2018-07-114-12/+3
|\ \ \
| * | | Cleans up syntax test.Erik Kundt2018-07-111-4/+1
| * | | Improves error with suggestion to remove parantheses.Erik Kundt2018-07-113-3/+6
| * | | Updates Changelog, syntax test and simplifies type checker.Erik Kundt2018-07-111-7/+1
| * | | Turns wrong argument count in base constructor call into en error.Erik Kundt2018-07-112-10/+7
| |/ /
* | | Merge pull request #4388 from ethereum/noPackedLiteralschriseth2018-07-112-10/+1
|\ \ \
| * | | Disallow packed encoding of literals.chriseth2018-07-032-10/+1
* | | | test: Fix typos.Cryptomental2018-07-111-2/+2
| |/ / |/| |
* | | Merge pull request #4376 from ethereum/fallbackExternalchriseth2018-07-1110-26/+7
|\ \ \
| * | | Update tests.chriseth2018-07-0410-26/+7
* | | | Merge pull request #4464 from cryptomental/bugfix/fix-typos-in-AsmParser-and-...chriseth2018-07-111-0/+7
|\ \ \ \
| * | | | libsolidity/syntaxTests: Add a test case for unwanted named arguments.Cryptomental2018-07-101-0/+7
* | | | | Merge pull request #4466 from ethereum/tupleNotEmptychriseth2018-07-117-37/+23
|\ \ \ \ \ | |_|_|_|/ |/| | | |
| * | | | Update tests.Daniel Kirchner2018-07-107-37/+23
* | | | | defaulting to v0.5.0 behaviour of unary + operator (disallow); also adapting ...Christian Parpart2018-07-104-21/+2
* | | | | Merge pull request #4415 from ethereum/uninitializedStoragePointerchriseth2018-07-108-35/+20
|\ \ \ \ \ | |/ / / / |/| | | |
| * | | | Update tests.Daniel Kirchner2018-07-108-35/+20
| |/ / /
* / / / Update tests.Daniel Kirchner2018-07-106-23/+15
|/ / /
* | | Merge pull request #4440 from ethereum/hex_denomination_enforce_errorchriseth2018-07-092-7/+1
|\ \ \
| * | | Enforce error on hex number combined with unit denominationLeonardo Alt2018-07-092-7/+1
* | | | Merge pull request #4403 from ethereum/syntaxTestsVisibilitychriseth2018-07-0937-613/+616
|\ \ \ \ | |/ / / |/| | |
| * | | Updates interface constructor and function type test.Erik Kundt2018-07-073-15/+18
| * | | Fixes wrong visibility specifier in interface constructor test.Erik Kundt2018-07-042-9/+9
| * | | Fixes broken syntax tests.Erik Kundt2018-07-042-18/+9
| * | | Adds default visibility specifier to syntax tests.Erik Kundt2018-07-0437-610/+619
| |/ /
* | | Merge pull request #4418 from ethereum/initialConstantschriseth2018-07-052-2/+2
|\ \ \
| * | | Only allow compile-time constants for constant state variables.chriseth2018-07-042-2/+2
| |/ /
* | | Merge pull request #4409 from ethereum/viewPureCheckerchriseth2018-07-0419-11/+163
|\ \ \
| * | | Extend view pure test suite.Daniel Kirchner2018-07-0417-3/+162
| * | | Adjust tests wrt strict view pure checker.Daniel Kirchner2018-07-042-8/+1
| |/ /
* / / Enforcing error on msg.gas and block.blockhash()Leonardo Alt2018-07-045-16/+4
|/ /
* | Merge pull request #4379 from ethereum/constructorArgsTwicechriseth2018-07-047-8/+8
|\ \
| * | Disallow constructor arguments given multiple times.chriseth2018-06-297-8/+8
* | | Update test suite.Daniel Kirchner2018-07-033-19/+11
| |/ |/|
* | Remove trailing whitespace in missing visibility warning.Daniel Kirchner2018-07-023-3/+3
* | Adds review suggestions.Erik Kundt2018-07-022-2/+7
* | Updates syntax tests to specify default visibility.Erik Kundt2018-06-2945-196/+138
|/
* Merge pull request #4354 from ethereum/constructorSyntaxTestschriseth2018-06-2920-50/+44
|\
| * Updates invalid syntax test.Erik Kundt2018-06-291-1/+2
| * Updates syntax tests to new constructor syntax.Erik Kundt2018-06-2920-50/+43
* | Merge pull request #4352 from D-Nice/developchriseth2018-06-292-0/+22
|\ \ | |/ |/|
| * Add passing test caseD-Nice2018-06-292-2/+13
| * Adds storage_reference.sol syntax testD-Nice2018-06-281-0/+11
* | Fallback function has to be external: backwards-compatible changes.chriseth2018-06-2930-64/+81
* | Merge pull request #4097 from ethereum/noPackedExceptForPackedchriseth2018-06-2827-116/+116
|\ \
| * | Also mention regular abi.encode in error message.chriseth2018-06-274-12/+12
| * | Update tests and add new tests.chriseth2018-06-257-3/+71
| * | Adjust tests.chriseth2018-06-2521-116/+48
* | | Add emit keyword to tests.chriseth2018-06-271-2/+1
* | | Remove non-0.5.0 warning for emit keyword (make it mandatory)Alex Beregszaszi2018-06-276-19/+6
* | | test: Adapted to the change of the var-keyword elimination.Christian Parpart2018-06-2650-320/+119
* | | test: drop obsoleted syntaxTest(s)Christian Parpart2018-06-262-19/+0
|/ /
* | Keep the 'if it not used as an address' helper message for all cases of addre...Alex Beregszaszi2018-06-254-4/+4
* | Update tests for strict address literalsJason Cobb2018-06-257-11/+10
|/
* Disallow the years unit denomination properlyAlex Beregszaszi2018-06-223-9/+2
* Merge pull request #4306 from ethereum/remove_050_workaround_scopingchriseth2018-06-2124-85/+29
|\
| * C99 scoping rules by defaultLeonardo Alt2018-06-2024-85/+29
* | Merge pull request #4219 from ethereum/functionTypeNamedArgumentsAlex Beregszaszi2018-06-213-7/+6
|\ \ | |/ |/|
| * Return parameters in function types may not be named.Daniel Kirchner2018-06-183-7/+6
* | Disallow raw callcode (was deprecated in 0.4.12)Alex Beregszaszi2018-06-205-15/+4
|/
* Enforce disallowing empty structsChristian Parpart2018-06-145-20/+13
* Disallow sha3/suicide aliasesAlex Beregszaszi2018-06-134-41/+13
* Merge pull request #4241 from ethereum/show-named-argAlex Beregszaszi2018-06-061-1/+1
|\
| * Show named argument name in errorAlex Beregszaszi2018-06-061-1/+1
* | Extract test cases from ViewPureCheckerAlex Beregszaszi2018-06-0622-0/+227
|/
* Move "create2_as_variable" back to non-isoltest tests.chriseth2018-06-051-6/+0
* Split out SolidityNameAndTypeResolution tests into SyntaxTestsAlex Beregszaszi2018-05-31551-0/+4244
* Merge pull request #4172 from ethereum/trailing_dotchriseth2018-05-313-0/+18
|\
| * Disallow trailing dots that are not followed by a numberLeonardo Alt2018-05-303-0/+18
* | Merge pull request #3743 from ethereum/popStorageArraychriseth2018-05-3129-0/+54
|\ \ | |/ |/|
| * Adds syntax tests, documentation and changelog entry.Erik Kundt2018-05-3029-0/+54
* | Allow using `calldata` keyword to specify data locationmingchuan2018-05-3014-1/+79
|/
* Merge pull request #4067 from ethereum/050chriseth2018-05-2410-9/+128
|\
| * Update control flow graph.Daniel Kirchner2018-05-172-7/+19
| * Disallow conversions between bytesX and uintY of different size.Daniel Kirchner2018-05-177-2/+56
| * Add syntax tests and Changelog entryLeonardo Alt2018-05-171-0/+53
* | Move more parser tests to syntax testsAlex Beregszaszi2018-05-2254-0/+458
|/
* Split warning for multi arguments for hash functionsAlex Beregszaszi2018-05-167-18/+36
* Add test for single non-bytes argument.chriseth2018-05-161-0/+12
* Adjust tests.chriseth2018-05-1611-10/+28
* Merge pull request #4145 from ethereum/more-parser-test-moveschriseth2018-05-1611-0/+102
|\
| * Move couple of parser tests to syntax tests.Alex Beregszaszi2018-05-1611-0/+102
* | Add tests for multi variable declaration statement.chriseth2018-05-168-0/+80
|/
* ABI encoding functions are pure and should be usable in constants.chriseth2018-05-151-0/+7
* Add test for default location.Daniel Kirchner2018-05-151-0/+19