aboutsummaryrefslogtreecommitdiffstats
path: root/libsolidity/analysis
Commit message (Expand)AuthorAgeFilesLines
* Add opcode RAND supportWei-Ning Huang2019-04-132-1/+2
* Disallow calldata structs.Daniel Kirchner2019-01-211-0/+10
* Merge pull request #5817 from ethereum/refactoringAlex Beregszaszi2019-01-182-19/+26
|\
| * Refactor TypeChecker::visit(FunctionDefinition const&).Daniel Kirchner2019-01-181-12/+20
| * Add ContractDefinition::isInterface.Daniel Kirchner2019-01-182-7/+6
* | Merge pull request #5775 from ethereum/codeAccesschriseth2019-01-186-3/+134
|\ \
| * | Warn if type(..).runtimeCode is used with assembly in the constructor.chriseth2019-01-182-1/+70
| * | Add code access dependency.chriseth2019-01-181-3/+14
| * | Syntax for meta type information.chriseth2019-01-184-2/+53
| |/
* | Change error message and add testsLeonardo Alt2019-01-171-1/+1
* | Return TypeError is fixed point encoding is attempted.Leonardo Alt2019-01-171-1/+10
|/
* Warn about unreachable code.Daniel Kirchner2019-01-105-11/+74
* make use of C++ `= default` constructor declarations as well as more non-stat...Christian Parpart2018-12-191-1/+2
* Add version pragma parsing to ParserAlex Beregszaszi2018-12-181-1/+1
* Sort includes in libsolidity/analysisLeonardo Alt2018-12-1722-41/+44
* Merge pull request #5630 from ethereum/warn_functions_empty_bodychriseth2018-12-132-14/+15
|\
| * Disable state mutability warning for functions with empty bodyLeonardo Alt2018-12-121-0/+1
| * Disable unused var warning for functions with empty bodyLeonardo Alt2018-12-121-14/+14
* | Refactoring of the ControlFlowGraph and use for detecting all uninitialized s...Daniel Kirchner2018-12-126-326/+348
|/
* Codegen for object access.chriseth2018-12-122-2/+5
* Merge pull request #5619 from ethereum/cleanup-abcchriseth2018-12-111-5/+5
|\
| * Replace push_back with emplace_back where it makes senseMathias Baumann2018-12-111-5/+5
* | Add tests for implcit conversions from literals to fixed-point numbers.Yi Huang2018-12-111-36/+40
|/
* Adds an additional message to failing type conversions.Erik Kundt2018-12-071-2/+4
* Introduces Result<T> for operator and implicit conversion type checks.Erik Kundt2018-12-051-1/+1
* Introduce the concept of builtin functions.chriseth2018-12-042-2/+9
* Merge pull request #5557 from ethereum/fixInterfaceImplementedByPublicStateVa...chriseth2018-12-031-21/+32
|\
| * Public state variables are implementing external functions.chriseth2018-12-031-21/+32
* | Merge pull request #5537 from ethereum/cp-SourceLocation-related-refactoringchriseth2018-12-011-3/+3
|\ \ | |/ |/|
| * liblangutil: SourceLocation: adds (shared) pointer to underlying CharStream s...Christian Parpart2018-12-011-3/+3
* | Move library related checks.chriseth2018-11-304-16/+16
* | Move hash collisions checks.chriseth2018-11-303-13/+18
* | Move external type clash check.chriseth2018-11-304-40/+40
* | Move fallback function checks.chriseth2018-11-303-20/+25
* | Move constructor checks.chriseth2018-11-303-16/+21
* | Rename functions.chriseth2018-11-302-15/+15
* | No need to visit structs early.chriseth2018-11-301-7/+1
* | Move base constructor argument checks.chriseth2018-11-304-93/+97
* | Move abstract function check.chriseth2018-11-304-46/+46
* | Move override checks.chriseth2018-11-304-87/+88
* | Move duplication checks.chriseth2018-11-304-92/+93
* | Add skeleton for contract level checker.chriseth2018-11-302-0/+96
* | Disallow inline arrays of mapping type.chriseth2018-11-301-0/+3
* | Report deprecation error on functions sha3 and suicide also without call.Leonardo Alt2018-11-291-20/+17
* | Replace IntegerType(256) with static function IntegerType::uint256()hydai2018-11-291-3/+3
* | Merge pull request #5526 from ethereum/fixGetterNewCoderchriseth2018-11-291-10/+31
|\ \ | |/ |/|
| * Properly check getter types to be old-abi-coder-compatible.chriseth2018-11-281-10/+31
* | Remove obsolete comment.chriseth2018-11-281-6/+1
|/
* Merge pull request #5382 from ethereum/libraryMappingPublicchriseth2018-11-271-13/+15
|\
| * Allow mapping arguments for public and external library functions.Daniel Kirchner2018-11-261-13/+15
* | Properly disallow different return types for interface overloads with differe...chriseth2018-11-261-3/+3
* | Use asCallableFunction for definition clashes in the same contract.chriseth2018-11-261-1/+3
* | Use asCallableFunction for external interface clash check.chriseth2018-11-261-2/+2
* | Use callable types for override check.chriseth2018-11-261-4/+4
* | Use asCallableFunction in override check (part 1).chriseth2018-11-261-1/+1
|/
* Allow visibility change from external to public.chriseth2018-11-261-9/+6
* Merge pull request #5485 from ethereum/refactorCallableFunctionchriseth2018-11-261-16/+16
|\
| * Correct style.chriseth2018-11-231-16/+16
* | Isolating libyul library API into its own namespace `yul`.Christian Parpart2018-11-233-22/+22
* | Reorder some include files and group <libyul/>'s together (as much as possible)Christian Parpart2018-11-232-2/+2
* | Rewrite header paths to adapt to recent `git mv` of libsolidity/inlineasm to ...Christian Parpart2018-11-233-7/+7
|/
* Introduce namespace `langutil` in liblangutil directory.Christian Parpart2018-11-2222-54/+109
* Isolating files shared between Yul- and Solidity language frontend.Christian Parpart2018-11-2212-13/+13
* Removing redundant virtual from override function declarationmordax2018-11-2110-119/+119
* Ignore unimplemented functions for storage returns.Daniel Kirchner2018-11-131-2/+5
* Refactor of bool TypeChecker::visit(FunctionCall const& _functionCall).Kristofer Peterson2018-11-102-277/+521
* Performance: Replace string by special single-copy YulString class.chriseth2018-11-081-4/+4
* Refactor `solidity::Token` into an `enum class` with `TokenTraits` helper nam...Christian Parpart2018-10-225-16/+16
* Merge pull request #5208 from mestorlx/bug4156chriseth2018-10-151-4/+4
|\
| * Updated MAXIMUM_STRING_DISTANCE to non static maximumStringDistance taking in...mestorlx2018-10-131-4/+4
* | Renaming namespace dev::julia to dev::yul.Christian Parpart2018-10-152-7/+7
* | Fixes invalid function calls to literals inside tuple assignment's LHS.Christian Parpart2018-10-151-2/+6
|/
* Merge pull request #5195 from ethereum/unsigned-array-indexchriseth2018-10-112-3/+6
|\
| * Fixes crash on non-unsigned array index.Erik Kundt2018-10-112-3/+6
* | Improved error message for lookup in function types.Martin Diz2018-10-101-2/+19
|/
* Merge pull request #5180 from ethereum/cpp-cleanupchriseth2018-10-102-2/+2
|\
| * Use empty() instead of size() == 0Alex Beregszaszi2018-10-092-2/+2
* | Fix pragma error suggestion.chriseth2018-10-091-1/+1
|/
* Fix typos.chriseth2018-10-041-4/+4
* Fixes #5051 (introduced in #4684), effectively allowing underscores in addres...Christian Parpart2018-10-021-2/+2
* Merge pull request #5061 from ethereum/fixedSizeArrayLengthchriseth2018-09-261-0/+2
|\
| * Removes unnecessary check of array type.Erik Kundt2018-09-261-3/+1
| * Simplifies zero-length check for fixed-size arrays.Erik Kundt2018-09-221-3/+3
| * Moves length check to reference resolver.Erik Kundt2018-09-222-5/+4
| * Disallows fixed-size multidim. arrays with zero-length.Erik Kundt2018-09-221-0/+5
* | Removed extra whitespace.Nicolás Venturo2018-09-261-1/+1
* | Use 'switch' instead of 'if..else if'Khan M Rashedun-Naby2018-09-241-17/+22
* | Make non-payable default for conversion to address.chriseth2018-09-201-3/+1
|/
* Do not set to ref for explicit conversion and add assertion for arrayliangdzou2018-09-141-2/+17
* fixing rebase conflictsJordan Last2018-09-141-2/+2
* Add payable and non-payable state mutability to AddressType.Daniel Kirchner2018-09-133-17/+53
* Accept ``address payable`` during parsing.Daniel Kirchner2018-09-111-1/+14
* Merge pull request #4872 from bakaoh/issue4716chriseth2018-09-061-4/+5
|\
| * Fix #4716: Crash when array index value is too largebakaoh2018-09-051-4/+5
* | Split IntegerType into IntegerType and AddressType.Daniel Kirchner2018-09-052-3/+3
* | Merge pull request #4590 from ethereum/msgValueModifierchriseth2018-09-055-65/+102
|\ \
| * | Turn warning into error.chriseth2018-09-041-5/+7
| * | Warns if modifier uses msg.value in non-payable function.Erik Kundt2018-09-045-65/+100
| |/
* | Fix abi.decode returning single value.chriseth2018-09-052-20/+20
* | Merge pull request #4888 from ethereum/disallow_single_statement_vardecl_if_w...chriseth2018-09-042-2/+25
|\ \
| * | Review suggestionsLeonardo Alt2018-09-042-11/+11
| * | Changed error message and added testsLeonardo Alt2018-09-041-1/+1
| * | Disallow single statement var decl in if/while/for without blocksLeonardo Alt2018-09-042-2/+25
| |/
* / Rename Location::Default to Location::Unspecified.Chase McDermott2018-08-182-5/+5
|/
* Dynamic type as mapping key returns error instead of assertion failLeonardo Alt2018-08-161-1/+15
* Merge pull request #4822 from ethereum/addressStaticCallchriseth2018-08-161-3/+9
|\
| * Add ``staticcall`` to ``address``.Daniel Kirchner2018-08-151-3/+9
* | Review suggestionsLeonardo Alt2018-08-151-3/+3
* | Disallow indexed reference types in events when using ABIEncoderV2Leonardo Alt2018-08-151-0/+10
|/
* Merge pull request #4390 from ethereum/abidecodechriseth2018-08-153-5/+81
|\
| * Add abi.decode(bytes data, (...))chriseth2018-08-153-5/+81
* | Fixes #4718: High CPU usage when using large variable namesbakaoh2018-08-151-2/+5
|/
* Merge pull request #4738 from ethereum/dataloc_mergedchriseth2018-08-154-112/+102
|\
| * Refactor data location check.Chase McDermott2018-08-154-112/+102
* | Merge pull request #4542 from aarlt/constructor_natspecchriseth2018-08-152-6/+39
|\ \ | |/ |/|
| * Fix: natspec annotations on constructorsAlexander Arlt2018-08-092-6/+39
* | Adds support for structs in interfaces.Christian Parpart2018-08-142-4/+9
* | Merge pull request #4777 from ethereum/typeConversionMemorychriseth2018-08-141-3/+6
|\ \
| * | Defaul data location for type conversions is memory.chriseth2018-08-131-3/+6
* | | Merge pull request #4798 from ethereum/mappingArgumentsAndReturnschriseth2018-08-132-2/+8
|\ \ \
| * | | Allow mappings of arrays as arguments and return values of internal functions.Daniel Kirchner2018-08-131-4/+1
| * | | Consider mappings return values in control flow analysis.Daniel Kirchner2018-08-131-1/+4
| * | | Allow mapping arguments and return values in all internal functions.Daniel Kirchner2018-08-131-1/+0
| * | | Allow mapping arguments and return values in internal library functions.Daniel Kirchner2018-08-131-1/+8
| |/ /
* / / Disallow ambiguous conversions between number literals and bytesXX types.Daniel Kirchner2018-08-131-16/+0
|/ /
* | Fix data location of external reference parameters.chriseth2018-08-091-1/+1
* | Rename FunctionKind SHA3 to KECCAK256 (as the instruction was renamed in libe...Alex Beregszaszi2018-08-092-5/+5
|/
* Merge pull request #4684 from ethereum/underscores_in_numeric_literalschriseth2018-08-092-0/+43
|\
| * Cleanup & polish numbers-with-underscores parsing, also improving tests.Christian Parpart2018-08-081-25/+24
| * Add stricter hex underscore rulesBalajiganapathi S2018-08-082-0/+44
* | Provide nicer error message when referencing overloaded referencesAlex Beregszaszi2018-08-081-0/+3
* | Merge pull request #4740 from ethereum/enforceNumberOfReturnValueschriseth2018-08-081-1/+5
|\ \
| * | Disallow empty return expressions in functions with non-empty return parameters.Daniel Kirchner2018-08-081-1/+5
| |/
* | Merge pull request #4745 from ethereum/nameResolverNoEarlyExitchriseth2018-08-081-3/+0
|\ \
| * | Do not stop after the first error in reference resolution.chriseth2018-08-081-3/+0
| |/
* / Remove remaining instances of ``fillRight`` left over from tuple wildcards as...Daniel Kirchner2018-08-081-4/+7
|/
* Merge pull request #4731 from ethereum/interface-enumchriseth2018-08-072-8/+0
|\
| * Allow enums in interfacesAlex Beregszaszi2018-08-072-8/+0
* | Merge pull request #4699 from ethereum/cleanup_VariableDeclarationchriseth2018-08-071-105/+109
|\ \
| * | libsolidity: Remove dead code wrt. VariableDeclaration::canHaveAutoType()Christian Parpart2018-08-071-105/+109
* | | More precise error message if using non-variables with _slot/_offsetAlex Beregszaszi2018-08-072-3/+7
* | | Properly handle invalid references used together with _slot and _offset.Alex Beregszaszi2018-08-071-0/+2
| |/ |/|
* | Do not crash on using _slot and _offset suffixes on their ownAlex Beregszaszi2018-08-071-0/+5
|/
* Merge pull request #4689 from ethereum/cleanup-050-testschriseth2018-08-062-3/+0
|\
| * Remove unused 050 variable in ReferencesResolverAlex Beregszaszi2018-08-062-3/+0
* | Merge pull request #4690 from ethereum/equalParameterTypesAlex Beregszaszi2018-08-062-5/+5
|\ \
| * | Renamed FunctionType::hasEqualArgumentTypes to FunctionType::hasEqualParamete...Jesse Busman2018-08-062-5/+5
| |/
* | Merge pull request #4671 from ethereum/mappingTupleAssignmentchriseth2018-08-062-5/+33
|\ \ | |/ |/|
| * Review suggestions; to be squashed.Daniel Kirchner2018-08-031-8/+10
| * Allow assignments to local variables of mapping types.Daniel Kirchner2018-08-031-1/+9
| * Disallow assignments to mappings within tuple assignments.Daniel Kirchner2018-08-032-5/+23
* | Merge pull request #4644 from ethereum/event_struct_errorchriseth2018-08-061-0/+10
|\ \
| * | Disallow structs in events without ABIEncoderV2Leonardo Alt2018-08-031-0/+10
| |/
* | Merge pull request #4681 from ethereum/var-suggestion-crashchriseth2018-08-061-0/+6
|\ \
| * | Fix declaration suggestion for var with different number of componentsAlex Beregszaszi2018-08-041-0/+6
| |/
* | Merge pull request #4412 from ethereum/v050-reference-resolver-errorTypeForLooseChristian Parpart2018-08-042-6/+2
|\ \ | |/ |/|
| * Disallow loos assembly in Solidity by permanently setting it to SyntaxError (...Christian Parpart2018-08-022-6/+2
* | Turn warning about uninitialized storage returns into an error.Daniel Kirchner2018-08-031-5/+5
* | Merge pull request #4522 from ethereum/fullEncodingTypechriseth2018-08-021-16/+2
|\ \ | |/ |/|
| * Isolate determining the encoding type into its own function.chriseth2018-08-011-16/+2
* | Extend code comment about signatures.Daniel Kirchner2018-08-011-1/+2
* | Do not exclude public state variables when looking for conflicting declarations.Daniel Kirchner2018-08-011-8/+1
* | Merge pull request #4378 from ethereum/noBaseWithoutArgumentsAlex Beregszaszi2018-08-011-17/+7
|\ \
| * | Correctly determine whether base constructor is called without parentheses.chriseth2018-08-011-11/+11
| * | Disallow calling base constructors without arguments.chriseth2018-08-011-14/+4
| |/
* / Guard CycleDetector against recursion exhaustion.Christian Parpart2018-08-012-2/+8
|/
* Merge pull request #4507 from ethereum/v050-var-keyword-trace-removalsAlex Beregszaszi2018-08-011-2/+19
|\
| * Ensures an empty use of var keyword is caught with the proper error message.Christian Parpart2018-08-011-2/+19
* | Fix crash when FunctionType has undeclared type as parameterLeonardo Alt2018-07-311-1/+1
* | Merge pull request #4527 from ethereum/mappingEnforceStorageAlex Beregszaszi2018-07-241-1/+8
|\ \
| * | Enforces data location of local mappings to storage.Erik Kundt2018-07-241-1/+8
* | | Disallow functions without implementation to use modifiers. This was already ...Christian Parpart2018-07-241-8/+2
| |/ |/|
* | Do not handle `balance` member of contract types specially.chriseth2018-07-201-2/+1
* | Merge pull request #4439 from ethereum/address_memberschriseth2018-07-191-18/+16
|\ \
| * | Changes in ExpressionCompilerLeonardo Alt2018-07-191-2/+3
| * | Add suggestion to error messageLeonardo Alt2018-07-171-18/+15
* | | Adds warning if function is shadowing a contract.Erik Kundt2018-07-181-9/+1
* | | Disallows old constructor syntax.Erik Kundt2018-07-182-25/+17
| |/ |/|
* | Suggests external for fallback and interface functions.chriseth2018-07-182-1/+15
* | Enforces visibility specifier and updates docs.Erik Kundt2018-07-172-11/+1
|/
* Add missing period in the end of error messagesLeonardo Alt2018-07-161-3/+3
* Deprecate the throw statementAlex Beregszaszi2018-07-161-12/+4
* enforce interface-functions to be external-declaredChristian Parpart2018-07-161-12/+4
* Merge pull request #4501 from ethereum/recursiveStructsWithFixedArrayschriseth2018-07-131-13/+16
|\
| * Use CycleDetector and account for multi-dimensional arrays.Daniel Kirchner2018-07-131-19/+16
| * Consider fixed size array members when checking for recursive structs.Daniel Kirchner2018-07-131-0/+6
* | Disallow multi variable declarations with mismatching number of values.Daniel Kirchner2018-07-131-72/+16
|/
* Merge pull request #4437 from ethereum/report-empty-var-declschriseth2018-07-132-0/+15
|\
| * Generates a syntax error when declaring a variable declaration's LHS has no n...Christian Parpart2018-07-122-0/+15
* | Require storage location.Daniel Kirchner2018-07-121-13/+4
|/
* Merge pull request #4443 from ethereum/double_var_decl_fixchriseth2018-07-123-1/+15
|\
| * Add comment explaining new codeLeonardo Alt2018-07-111-0/+5
| * Fix crash for double variable declaration in the same scope.Leonardo Alt2018-07-113-1/+10
* | Merge pull request #4404 from ethereum/v050-var-keyword-suggestChristian Parpart2018-07-113-19/+63
|\ \
| * | Coding style.chriseth2018-07-111-23/+18
| * | semantics: Suggest auto-deduced type when user declares variable with `var` k...Christian Parpart2018-07-113-19/+68
* | | Merge pull request #4454 from ethereum/constructorArgCountchriseth2018-07-111-24/+9
|\ \ \
| * | | Improves error with suggestion to remove parantheses.Erik Kundt2018-07-111-1/+1
| * | | Updates Changelog, syntax test and simplifies type checker.Erik Kundt2018-07-111-3/+1
| * | | Turns wrong argument count in base constructor call into en error.Erik Kundt2018-07-111-22/+9
| |/ /
* | | Merge pull request #4388 from ethereum/noPackedLiteralschriseth2018-07-111-17/+7
|\ \ \
| * | | Disallow packed encoding of literals.chriseth2018-07-031-17/+7
* | | | Code, Changelog, ReleaseChecklist: Fix typos.Cryptomental2018-07-112-2/+2
| |/ / |/| |
* | | Merge pull request #4376 from ethereum/fallbackExternalchriseth2018-07-111-4/+1
|\ \ \
| * | | Fallback function has to be external.chriseth2018-07-041-4/+1
* | | | Merge pull request #4464 from cryptomental/bugfix/fix-typos-in-AsmParser-and-...chriseth2018-07-111-1/+1
|\ \ \ \
| * | | | AsmParser,TypeChecker: Fix typos.Cryptomental2018-07-101-1/+1
* | | | | Merge pull request #4466 from ethereum/tupleNotEmptychriseth2018-07-111-11/+2
|\ \ \ \ \ | |_|_|_|/ |/| | | |
| * | | | Remove special ``(x,)`` case from type assignment.chriseth2018-07-101-4/+0
| * | | | Disallow empty tuple components.Daniel Kirchner2018-07-101-7/+2
* | | | | defaulting to v0.5.0 behaviour of unary + operator (disallow); also adapting ...Christian Parpart2018-07-101-8/+2
* | | | | Merge pull request #4415 from ethereum/uninitializedStoragePointerchriseth2018-07-101-4/+1
|\ \ \ \ \ | |/ / / / |/| | | |
| * | | | Turn uninitialized storage variables into an error.Daniel Kirchner2018-07-101-4/+1
| |/ / /
* / / / Check for matching number of components in TupleType::isImplicitlyConvertible...Daniel Kirchner2018-07-101-19/+1
|/ / /
* | | Enforce error on hex number combined with unit denominationLeonardo Alt2018-07-091-17/+6
* | | Merge pull request #4418 from ethereum/initialConstantschriseth2018-07-051-13/+4
|\ \ \
| * | | Only allow compile-time constants for constant state variables.chriseth2018-07-041-13/+4
| |/ /
* | | Merge pull request #4409 from ethereum/viewPureCheckerchriseth2018-07-042-26/+13
|\ \ \
| * | | Remove v050 check for enforcing "view" in ViewPureChecker.Daniel Kirchner2018-07-042-26/+13
| |/ /
* / / Enforcing error on msg.gas and block.blockhash()Leonardo Alt2018-07-041-27/+9
|/ /
* | Merge pull request #4379 from ethereum/constructorArgsTwicechriseth2018-07-041-14/+5
|\ \
| * | Disallow constructor arguments given multiple times.chriseth2018-06-291-14/+5
* | | libsolidity: turns the var-keyword use from deprecation-warning to an error a...Christian Parpart2018-07-031-6/+1
| |/ |/|
* | Remove trailing whitespace in missing visibility warning.Daniel Kirchner2018-07-021-2/+2
|/
* Merge pull request #4352 from D-Nice/developchriseth2018-06-291-1/+1
|\
| * Fixes storage ref var typo error from 'prefix' to 'suffix'D-Nice2018-06-251-1/+1
* | Merge pull request #4097 from ethereum/noPackedExceptForPackedchriseth2018-06-282-37/+44
|\ \
| * | Also mention regular abi.encode in error message.chriseth2018-06-271-2/+8
| * | Provide better suggestions in error messages with respect to call and hash fu...chriseth2018-06-251-4/+34
| * | Bare functions take single bytes argument.chriseth2018-06-252-33/+4
* | | Remove non-0.5.0 warning for emit keyword (make it mandatory)Alex Beregszaszi2018-06-271-6/+1
|/ /
* | Keep the 'if it not used as an address' helper message for all cases of addre...Alex Beregszaszi2018-06-251-7/+12
* | Better wording for invalid address literal errorAlex Beregszaszi2018-06-251-2/+4
* | Change invalid (not exactly 160 bits long) address literal to errorJason Cobb2018-06-251-4/+11
|/
* Disallow the years unit denomination properlyAlex Beregszaszi2018-06-221-12/+4
* Merge pull request #4301 from rnaby/TypeCheckerchriseth2018-06-221-5/+3
|\
| * Simplification of typeSupportedByOldABIEncoderKhan M Rashedun-Naby2018-06-211-5/+3
* | Merge pull request #4306 from ethereum/remove_050_workaround_scopingchriseth2018-06-214-36/+23
|\ \
| * | C99 scoping rules by defaultLeonardo Alt2018-06-204-36/+23
* | | Merge pull request #4219 from ethereum/functionTypeNamedArgumentsAlex Beregszaszi2018-06-211-1/+1
|\ \ \ | |/ / |/| |
| * | Return parameters in function types may not be named.Daniel Kirchner2018-06-181-1/+1
| |/
* / Disallow raw callcode (was deprecated in 0.4.12)Alex Beregszaszi2018-06-201-12/+4
|/
* Enforce disallowing empty structsChristian Parpart2018-06-141-8/+2
* Disallow sha3/suicide aliasesAlex Beregszaszi2018-06-131-10/+2
* Show named argument name in errorAlex Beregszaszi2018-06-061-1/+1
* Fix view/pure error ordering problem.chriseth2018-06-041-2/+2
* Allow using `calldata` keyword to specify data locationmingchuan2018-05-302-8/+32
* Update control flow graph.Daniel Kirchner2018-05-171-5/+4
* Split warning for multi arguments for hash functionsAlex Beregszaszi2018-05-161-10/+12
* Warn/enforce single bytes argument for certain builtins (hashing functions).chriseth2018-05-161-0/+27