aboutsummaryrefslogtreecommitdiffstats
path: root/libsolidity/analysis
Commit message (Collapse)AuthorAgeFilesLines
...
* Unary operators and division.chriseth2017-11-301-1/+1
|
* If statement for Iulia / inline assembly.chriseth2017-11-221-0/+5
|
* Improve cyclic constant error messageAlex Beregszaszi2017-11-221-1/+1
|
* Detect cyclic constant definitionsBalajiganapathi S2017-11-222-8/+15
|
* Allow constant integer variables as array lengths.Balajiganapathi S2017-11-222-0/+19
|
* Do not try to display checksummed address for too-short/long address literalsAlex Beregszaszi2017-11-171-2/+2
|
* Improves address literal checksum error messagewadeAlexC2017-11-171-3/+5
|
* Update outdated commentsKwang Yul Seo2017-11-154-4/+4
| | | | _errors -> _errorReporter.
* Fix a typoKwang Yul Seo2017-11-141-1/+1
| | | | | A semicolon was mistakenly inserted where a string concatenation operator was meant.
* More detailed errors for invalid array lengths (such as division by zero).Alex Beregszaszi2017-10-201-3/+20
|
* Turn usage of callcode into an error as experimental 0.5.0 featureAlex Beregszaszi2017-10-191-4/+12
|
* Only check tuples for valid rational numbers if they have more than one element.chriseth2017-10-181-1/+1
|
* Validate each tuple literalAlex Beregszaszi2017-10-181-0/+6
|
* Force interface functions as external (0.5.0)Alex Beregszaszi2017-10-061-2/+10
|
* Use the proper error reporting interface in ConstantEvaluatorAlex Beregszaszi2017-10-063-7/+13
|
* Require location keyword for local variables (0.5.0)Alex Beregszaszi2017-10-061-5/+13
|
* Do not consider shadowing in variable names inside event declarationsFederico Bond2017-10-051-2/+4
|
* Better error message when using fractional number as array size expressionswadeAlexC2017-10-041-2/+3
|
* Disallow non-pure constant state variables in 0.5.0Federico Bond2017-10-031-5/+14
|
* Extract duplicate function or event finding logicFederico Bond2017-09-302-37/+14
|
* Emit error when declaring event with same name and arguments twiceFederico Bond2017-09-302-0/+45
|
* Unary + now a synax error (experimental 0.5.0)Rhett Aultman2017-09-301-1/+8
| | | | | | | The unary + was deprecated with a warning, but will be elevated to an error in 0.5.0. This adds the syntax error for the 0.5.0 pragma, and for a true 0.5.0 release we should consider removing the operator from the parser.
* Validate array length in type checkerAlex Beregszaszi2017-09-291-1/+1
|
* Order GlobalContext entriesAlex Beregszaszi2017-09-271-13/+13
|
* Format GlobalContext for readabilityAlex Beregszaszi2017-09-271-42/+25
|
* Merge pull request #2978 from ethereum/infer-locationchriseth2017-09-271-1/+1
|\ | | | | Report correct location for inferred types in packed encoding
| * Report correct location for inferred types in packed encodingAlex Beregszaszi2017-09-271-1/+1
| |
* | Ensure that address types are always declared as 160bitAlex Beregszaszi2017-09-271-1/+1
|/
* Merge pull request #2902 from ethereum/warn-obsoletechriseth2017-09-211-0/+8
|\ | | | | Warn about obsolete sha3/suicide calls
| * Warn about obsolete sha3/suicide callsAlex Beregszaszi2017-09-191-0/+8
| |
* | Ensure parameter names match between headers and implementationAlex Beregszaszi2017-09-203-11/+11
|/
* Allow constant byte arrays.chriseth2017-09-191-1/+1
|
* Merge pull request #2910 from ethereum/fallback-restrict-externalchriseth2017-09-181-0/+5
|\ | | | | Force fallback to be external (experimental 0.5.0 change)
| * Force fallback to be external (experimental 0.5.0 change)Alex Beregszaszi2017-09-181-0/+5
| |
* | Check for recursive structs.chriseth2017-09-161-3/+3
|/
* Merge pull request #2904 from ethereum/viewPure5Alex Beregszaszi2017-09-152-11/+24
|\ | | | | Enforce view with error for experimental 0.5.0.
| * Enforce view with error for experimental 0.5.0.chriseth2017-09-142-11/+24
| |
* | Warn if no visibility is specified on contract functions.Alex Beregszaszi2017-09-142-1/+14
|/
* Merge pull request #2848 from ethereum/checkViewPurechriseth2017-09-146-4/+398
|\ | | | | Enforce view and pure.
| * Minor changes from review.chriseth2017-09-131-9/+3
| |
| * Rename to invalidInPureFunctionschriseth2017-09-131-1/+1
| |
| * Allow constant variables in pure functions.chriseth2017-09-061-1/+1
| |
| * Rename and add anonymous namespace.chriseth2017-09-061-1/+4
| |
| * Fix testschriseth2017-09-061-5/+8
| |
| * Tone down error message.chriseth2017-09-061-2/+2
| |
| * Modifier invocation can be base constructor callchriseth2017-09-061-5/+7
| |
| * Analyze assembly.chriseth2017-09-062-11/+88
| |
| * Do not report on overriding function and only warn for view.chriseth2017-09-061-12/+19
| |
| * Store super function.chriseth2017-09-062-0/+4
| |
| * Remove previous warning about pureness not being enforced.chriseth2017-09-061-2/+0
| |
| * View-pure checker.chriseth2017-09-063-2/+308
| |
* | Limit each duplicate declaration error to 32 referencesAlex Beregszaszi2017-09-131-2/+20
| |
* | Merge pull request #2852 from ssuman/developchriseth2017-09-121-1/+10
|\ \ | | | | | | This commit will display warning when there is unused function parameter
| * | Display helpful warning for unused function arguments/return parametersSuman2017-09-121-1/+10
| | |
* | | Do not report overload conflicts for every line excessivelyAlex Beregszaszi2017-09-121-1/+5
|/ /
* | Merge pull request #2888 from ethereum/same-declaration-errorAlex Beregszaszi2017-09-121-10/+12
|\ \ | | | | | | Use secondary source location as a vector in same declaration errors
| * | Use secondary source location as a vector in same declaration errorsAlex Beregszaszi2017-09-121-10/+12
| | |
* | | Show each unimplemented function in secondary source locationAlex Beregszaszi2017-09-121-5/+7
|/ /
* / Do not show the same error multiple times for eventsAlex Beregszaszi2017-09-121-4/+4
|/
* Change array too large error message as it is valid for non-calldata tooAlex Beregszaszi2017-09-061-1/+1
|
* Swap declaration/statemutability in FunctionType constructorAlex Beregszaszi2017-08-291-1/+0
|
* Mark all built in functions with appropriate statemutabilityAlex Beregszaszi2017-08-292-11/+14
|
* Warn on using literals in tight packingAlex Beregszaszi2017-08-251-0/+22
|
* Remove unused statements from the Natspec headersAlex Beregszaszi2017-08-251-1/+1
|
* Introduce pure specifier on functionsAlex Beregszaszi2017-08-241-0/+2
|
* Check inheritance specifier arguments for interfaces.chriseth2017-08-221-5/+5
|
* Reject the creation of interface with the new statementAlex Beregszaszi2017-08-221-0/+6
|
* Fix crash related to ``using for`` without a library.chriseth2017-08-211-1/+1
|
* Library cannot have constructorsAlex Beregszaszi2017-08-211-0/+3
|
* Use state mutability in override error messagesAlex Beregszaszi2017-08-171-11/+10
|
* Use state mutability in fallback/constructor checkAlex Beregszaszi2017-08-171-4/+14
|
* Warn about shift of literals.chriseth2017-08-161-2/+3
|
* Remove useless payable & constant typecheckAlex Beregszaszi2017-08-141-2/+0
|
* Merge pull request #2703 from ethereum/warnAboutLargeStorageArrayschriseth2017-08-142-0/+45
|\ | | | | Warn about large storage structures.
| * Warn about large storage structures.chriseth2017-08-122-0/+45
| |
* | Avoid duplicate errors due to function overridesFederico Bond2017-08-121-5/+5
| |
* | Use a secondary location for function override errorsFederico Bond2017-08-122-24/+16
| |
* | Refactor function override check to remove duplicate logicFederico Bond2017-08-122-47/+50
| |
* | Use fully qualified name of super in messageFederico Bond2017-08-121-4/+3
| |
* | Improve override changes signature error messageFederico Bond2017-08-122-1/+34
|/
* Introduce ExperimentalFeatures headerAlex Beregszaszi2017-08-101-6/+4
|
* Reject wildcard and multiple experimental pragmasAlex Beregszaszi2017-08-101-13/+16
|
* Reject unsupported experimental feature namesAlex Beregszaszi2017-08-101-0/+5
|
* Warn if using experimental pragmaAlex Beregszaszi2017-08-101-0/+5
|
* Support experimental feature pragmaAlex Beregszaszi2017-08-102-4/+30
|
* Disable unimplemented library functions insteadAlex Beregszaszi2017-08-081-15/+2
|
* Raise error when using unimplemented internal library functions.Alex Beregszaszi2017-08-081-0/+15
|
* Constructors must be implemented if declared.Alex Beregszaszi2017-08-051-6/+2
|
* Merge pull request #2687 from ethereum/show-unimplemented-funcsAlex Beregszaszi2017-08-051-12/+16
|\ | | | | Show unimplemented function if trying to instantiate an abstract class
| * Remove duplicated check for unimplemented functionsAlex Beregszaszi2017-08-041-2/+0
| |
| * Show unimplemented function if trying to instantiate an abstract classAlex Beregszaszi2017-08-041-1/+8
| |
| * Replace isFullyImplemented with unimplementedFunctions in ASTAnnotationsAlex Beregszaszi2017-08-041-10/+9
| |
* | Search for shadowee starting from parent scope.chriseth2017-08-052-24/+4
| |
* | Do not mark overloaded functions as shadowingAlex Beregszaszi2017-08-052-1/+20
|/
* Rename Bare to BarecallAlex Beregszaszi2017-08-011-1/+1
|
* Add isFallback() helperAlex Beregszaszi2017-07-281-2/+2
|
* Merge pull request #2635 from ethereum/fixCrashOnAssignmentToNonLValueAlex Beregszaszi2017-07-271-1/+3
|\ | | | | Fix crash on assignment to non-LValue
| * Fix crash on assignment to non-lvalue.chriseth2017-07-261-1/+3
| |
* | Re-allow multiple modifiers per function.chriseth2017-07-271-2/+0
| |
* | Warn about shadowing variables.Alex Beregszaszi2017-07-252-40/+98
|/
* Migrate over to ErrorReporterRhett Aultman2017-07-191-1/+1
|
* Warn if this is used in constructorAlex Beregszaszi2017-07-192-0/+15
|
* Include types in explicit conversion error messageAlex Beregszaszi2017-07-141-1/+8
|
* Disable large arrays for memory location tooAlex Beregszaszi2017-07-141-1/+5
|
* Issue error properly for oversized arrays for calldataAlex Beregszaszi2017-07-141-0/+6
|
* Add type error when attempting value transfer to a non-payable contractFederico Bond2017-07-131-0/+19
|
* Issue proper warning trying to access calldata variables in inline assemblyAlex Beregszaszi2017-07-121-1/+4
|
* Fix invalid "explicit storage keyword" warning for reference members of structs.chriseth2017-07-111-1/+1
|
* Deprecate throw.chriseth2017-07-062-0/+13
|
* Warn if local storage reference variable does not use "storage" explicitly.chriseth2017-07-062-5/+20
|
* Remove parsing of why3 doc stringsAlex Beregszaszi2017-07-012-13/+1
|
* Warn about callcode.chriseth2017-06-301-0/+8
|
* Rename to isHexNumber()Alex Beregszaszi2017-06-291-1/+1
|
* Add hasHexPrefix() to AST::LiteralAlex Beregszaszi2017-06-281-1/+1
|
* Give min and max values in warning message.chriseth2017-06-281-1/+9
|
* Warn if using var x = 0chriseth2017-06-281-0/+24
|
* Merge pull request #2464 from federicobond/deprecate-function-type-nameschriseth2017-06-272-0/+14
|\ | | | | Warn deprecated usage of parameter names in function types
| * Warn deprecated usage of parameter names in function typesFederico Bond2017-06-272-0/+14
| |
* | Warn about copies in storage that might overwrite unexpectedly.chriseth2017-06-262-0/+34
| |
* | Merge pull request #2460 from ethereum/disallowMultiModifierAlex Beregszaszi2017-06-261-0/+13
|\ \ | | | | | | Disallow invoking the same modifier multiple times.
| * | Disallow invoking the same modifier multiple times.chriseth2017-06-241-0/+13
| | |
* | | Merge pull request #2449 from federicobond/warn-bytesxx-decimalchriseth2017-06-261-1/+18
|\ \ \ | |/ / |/| | Warn if decimal literals are used in a bytesXX context
| * | Warn if decimal literals are used in a bytesXX contextFederico Bond2017-06-241-1/+18
| | | | | | | | | | | | Fixes #2349
* | | Fix address literals not being treated as compile-time constantsFederico Bond2017-06-231-5/+5
| |/ |/| | | | | | | The early return implemented for address literals in TypeChecker was preventing the isPure annotation from getting applied. Closes #2441
* | Fix segmentation fault with constant function parametersFederico Bond2017-06-221-1/+8
|/
* Silence compiler warning.chriseth2017-06-141-1/+1
|
* Fix a crash about a non-callable expression.chriseth2017-06-141-4/+1
|
* Add a warning about a varialbe of the name of an instructionYoichi Hirai2017-06-133-0/+27
|
* Generate only single error in inline assembly.chriseth2017-06-082-3/+12
|
* Initial EVM1.5 assembly implementation.chriseth2017-06-082-2/+9
|
* Refactor error reportingRhett Aultman2017-05-3014-429/+241
| | | | | | | | | This commit introduces ErrorReporter, a utility class which consolidates all of the error logging functionality into a common set of functions. It also replaces all direct interactions with an ErrorList with calls to an ErrorReporter. This commit resolves issue #2209
* Introduce Julia mode in AsmAnalyzerAlex Beregszaszi2017-05-272-1/+2
|
* Adapt EVM codegen to new namespace.chriseth2017-05-262-7/+7
|
* Merge pull request #2292 from roadriverrail/inline_asm_unused_warningAlex Beregszaszi2017-05-241-3/+0
|\ | | | | Drop the inline asm includes from StaticAnalyzer
| * Drop the inline asm includes from StaticAnalyzerRhett Aultman2017-05-231-3/+0
| |
* | Merge pull request #2265 from roadriverrail/inline_asm_unused_warningchriseth2017-05-222-2/+24
|\| | | | | Analyze InlineAssembly for variable use
| * Analyze InlineAssembly for variable useRhett Aultman2017-05-222-2/+24
| | | | | | | | | | The unused variable checker in StaticAnalyzer did not conssider InlineAssembly objects. This commit introduces that missing feature.
* | minor fixes and changelog updatedjudjuu2017-05-221-0/+1
| |
* | refactoring functionCallAnnotationdjudjuu2017-05-191-6/+9
|/
* Added change to make compile happy on MacOS 10.9.5Erik Quenon Steggall2017-05-061-1/+1
|
* Cleanup, style and additional test.chriseth2017-05-032-11/+7
|
* Refactor: Combine bool and function pointer.chriseth2017-05-032-10/+8
|
* Treat returns with expressions as return param useRhett Aultman2017-05-032-1/+14
| | | | | | | There are many cases of code where the return parameters exist mostly as a form of documentation. This change ensures that they do not have to be used in the function body so long as there is a return supplying values
* Warn on unused local variablesRhett Aultman2017-05-032-0/+45
| | | | | | Analyze functions for all local variables, parameters, and named return variables which are never used in the function, and issue a warning.
* Merge pull request #2199 from roadriverrail/no_unary_pluschriseth2017-05-022-0/+21
|\ | | | | Deprecate use of unary '+'
| * Style and stricter tests.chriseth2017-05-021-3/+1
| |
| * Deprecate use of unary '+'Rhett Aultman2017-04-292-0/+23
| | | | | | | | | | | | | | The unary '+' serves no meaningful purpose in Solidity and it makes it possible to produce typos with dagerous implications (e.g. 'a =+5 '), so we are deprecating it. The SyntaxChecker currently issues warnings on the unary '+' but will still compile it for now.
* | Merge pull request #2110 from federicobond/fix-posttypecheckerchriseth2017-05-021-0/+3
|\ \ | |/ |/| Fix PostTypeChecker retaining state across contracts
| * Fix PostTypeChecker retaining state across contractsFederico Bond2017-04-091-0/+3
| |
* | Refactor to combined scope and stack height info.chriseth2017-04-262-4/+13
| |
* | Fix storage access tests.chriseth2017-04-251-5/+5
| |
* | Build fix.chriseth2017-04-251-3/+3
| |
* | Storage access from inline assembly.chriseth2017-04-252-7/+38
| |
* | Move analysis out of code generator.chriseth2017-04-251-2/+2
| |
* | Only allow access to local variables and only if they have a stack size of one.chriseth2017-04-251-28/+38
| |
* | Review comments and cleanup.chriseth2017-04-251-0/+2
| |
* | Use actual type checking phase of assembler.chriseth2017-04-252-11/+10
| |
* | Split external identifier access into resolving and code generation.chriseth2017-04-252-32/+30
| |
* | Change error message.chriseth2017-04-211-1/+1
| |
* | Warn about side-effect free statements.chriseth2017-04-213-2/+11
|/
* Fix: Contract inheriting from base with unimplemented constructor is abstract.chriseth2017-03-221-0/+10
|
* Visit structs only once.chriseth2017-03-211-3/+7
|
* Simplify interface checks for FunctionDefinitionAlex Beregszaszi2017-03-181-8/+7
|
* Disallow private or internal functions in interfacesAlex Beregszaszi2017-03-181-0/+3
|
* Disallow constructor in interfacesAlex Beregszaszi2017-03-181-0/+3
|
* Disallow enums in interfacesAlex Beregszaszi2017-03-182-0/+8
|
* Use declared instead of definedAlex Beregszaszi2017-03-181-1/+1
|
* Reject invalid definitions for interface contractsAlex Beregszaszi2017-03-181-0/+13
|
* Change references to FunctionType::LocationAlex Beregszaszi2017-03-162-25/+24
|
* Mention 'transfer' in warning about unchecked 'send'.chriseth2017-03-151-2/+3
|
* Merge pull request #1729 from ethereum/constantvariablesYoichi Hirai2017-03-151-18/+62
|\ | | | | Only allow pure expressions for constant state variables.
| * Turn non-constant constants error into warning.chriseth2017-03-151-2/+3
| |
| * Disallow constants that are neither value types nor strings.chriseth2017-03-131-0/+8
| |
| * Allow enum values for constants.chriseth2017-03-131-1/+4
| |
| * Type checking for pure expressions.chriseth2017-03-131-18/+50
| |
* | Require and Assert.chriseth2017-03-141-3/+4
|/
* Merge pull request #1751 from ethereum/warnLiteralExpBaseYoichi Hirai2017-03-111-0/+20
|\ | | | | Warn if base of exponentiation operation is a literal.
| * Warn about literal constant base in exponentiation.chriseth2017-03-071-0/+20
| |
* | Resolve build-stopping error about 'minor' and 'major' being defined in ↵Ryan Casey2017-03-101-0/+3
| | | | | | | | <sys/types.h>
* | Merge pull request #1747 from ethereum/fixICEInternalConstructorYoichi Hirai2017-03-091-3/+1
|\ \ | | | | | | Move privateness of constructor into AST itself.
| * | Move public constructor property into AST itself.chriseth2017-03-061-3/+1
| | |
* | | Merge pull request #1748 from ethereum/singletonArraychriseth2017-03-081-1/+1
|\ \ \ | | | | | | | | Use mobile type for singleton array.
| * | | Convert to mobile type for array type.chriseth2017-03-061-1/+1
| | |/ | |/|
* | | Disallow compound assignment for tuples.chriseth2017-03-081-0/+5
| | |
* | | Merge pull request #1699 from ethereum/asmlabelsYoichi Hirai2017-03-081-4/+11
|\ \ \ | | | | | | | | Assembly labels with stack information
| * | | Move lambda.chriseth2017-03-031-3/+9
| | | |
| * | | Refactor CodeGen to recurse on blocks.chriseth2017-03-031-3/+4
| | | |
* | | | Merge pull request #1733 from ethereum/selfReferentialConstantchriseth2017-03-073-0/+180
|\ \ \ \ | | | | | | | | | | Detect cyclic dependencies between constants.
| * | | | Check for circular references in constant variables.chriseth2017-03-063-0/+180
| | |/ / | |/| |
* | | | Merge pull request #1737 from ethereum/localmappingschriseth2017-03-061-2/+5
|\ \ \ \ | |/ / / |/| | | Disallow uninitialized mapping variables.
| * | | Disallow uninitialized mapping variables.chriseth2017-03-061-2/+5
| | |/ | |/|
* / | Mention way to remove warning.chriseth2017-03-061-1/+5
|/ /
* | Merge pull request #1702 from ethereum/assertErrorYoichi Hirai2017-03-041-2/+3
|\ \ | |/ |/| Change effect of assert to invalid opcode.
| * Remove assert for now.chriseth2017-02-241-2/+3
| |
* | Disallow variable declaration with inferred empty tuple type.chriseth2017-03-021-0/+5
| |
* | Deposit one stack item for non-value types in inline assembly type checking.chriseth2017-02-201-1/+1
| |
* | Fix early exist for fatal errors.chriseth2017-02-164-73/+82
|/
* Review comments.chriseth2017-02-143-7/+7
|
* Allow different entry scope for registerDeclarations.chriseth2017-02-143-9/+22
|
* Extract scopes into compiler stack.chriseth2017-02-142-2/+8
|
* Refactor type system to allow multiple entry points.chriseth2017-02-144-15/+27
|
* Refactor NameAndTypeResolver and SyntaxChecker to allow other entry points.chriseth2017-02-146-61/+86
|
* Support revert()Alex Beregszaszi2017-02-111-1/+3
|
* Implement assert as a global functionAlex Beregszaszi2017-02-101-1/+3
|
* Disallow arrays with negative lengthAlex Beregszaszi2017-02-021-0/+2
|
* Warn about invalid checksums of addresses.chriseth2017-01-251-0/+10
|
* Merge pull request #1245 from ethereum/1215chriseth2017-01-242-7/+19
|\ | | | | Allow multiple events of the same name
| * analysis: disallow overloading functions with eventsYoichi Hirai2017-01-231-1/+6
| |
| * analysis: fix formatYoichi Hirai2017-01-231-4/+7
| |
| * analysis: Resolve event overloadingYoichi Hirai2017-01-232-14/+11
| |
| * analysis: Allow multiple events of the same nameYoichi Hirai2017-01-231-0/+7
| | | | | | | | Fixes #1215
* | Check if constructor is public or not.chriseth2017-01-211-1/+6
|/
* Fix default function type name visibility.chriseth2017-01-191-1/+0
|
* analysis: use Declaration::functionType() in another locationYoichi Hirai2017-01-121-11/+4
|
* ast: add Declaration::functionType()Yoichi Hirai2017-01-121-14/+7
|
* analysis: avoid emscripten build failureYoichi Hirai2017-01-121-3/+3
|
* analysis: changes necessary to compile std/StandardToken.solYoichi Hirai2017-01-123-12/+58
|
* analysis: allow some shadowings explicitlyYoichi Hirai2017-01-121-0/+8
|
* analysis: report errors when inheritance causes collisionYoichi Hirai2017-01-121-1/+25
|
* Improve error message when trying to modify constant variablesFederico Bond2016-12-131-1/+6
|
* Warn about using msg.value in non-payable functionFederico Bond2016-12-092-0/+150
|
* Fix licensing headersVoR02202016-11-2318-72/+72
| | | | Signed-off-by: VoR0220 <rj@erisindustries.com>
* Check that no internals are used in any external function type.chriseth2016-11-163-1/+17
|
* Disallow payable internal functions.chriseth2016-11-161-1/+2
|
* Function types.chriseth2016-11-162-0/+18
|
* Type checker: move the burden of computing mobile type to commonTypeYoichi Hirai2016-11-111-2/+2
| | | | This solves #621
* Suggest correct version for pragma and complain about pre-release version.chriseth2016-10-251-4/+13
|
* Merge pull request #1279 from ethereum/semver-helperchriseth2016-10-251-0/+6
|\ | | | | Export major/minor/patch helpers on SemVerVersion
| * Export major/minor/patch helpers on SemVerVersionAlex Beregszaszi2016-10-251-0/+6
| |
* | Merge pull request #1264 from ethereum/988chriseth2016-10-251-0/+5
|\ \ | |/ |/| State variable under contract's name
| * analysis: determine if a member access on a contract is an l-valueYoichi Hirai2016-10-251-0/+5
| |
* | More checks for missing mobile type.chriseth2016-10-241-4/+14
|/
* Use warning function in TypeCheckerAlex Beregszaszi2016-10-201-5/+4
|
* Disallow unsupported RValues in inline assemblyAlex Beregszaszi2016-10-201-4/+2
|
* Disallow magic variables in inline assemblyAlex Beregszaszi2016-10-201-0/+4
|
* Fix pragma keyword checkYoichi Hirai2016-10-111-1/+1
| | | | Fixes #1192
* Add alias keccak256() for sha3()Alex Beregszaszi2016-10-061-0/+2
|
* Fix crash for TypeName[k].chriseth2016-09-161-1/+1
|
* Constructor must be internal or publicAlex Beregszaszi2016-09-061-0/+2
|
* Reject constant constructorsAlex Beregszaszi2016-09-061-2/+6
|
* Reject constant modifier on the fallback functionAlex Beregszaszi2016-09-061-0/+2
|
* Tests for payable / private combination.chriseth2016-09-061-2/+2
|
* Make constant and payable mutually exclusive.chriseth2016-09-061-0/+2
|
* Change function type to include and propagate payable and constant modifier.chriseth2016-09-061-10/+2
|
* Merged in changes from chriseth/payableAlex Beregszaszi2016-09-061-2/+12
|
* Use version string (including prerelease) for pragma matching.chriseth2016-09-011-2/+3
|
* Version pragma.chriseth2016-09-014-3/+449
|
* Make fallback function throw by default.chriseth2016-08-301-0/+2
|
* Disallow fallback function to return values.chriseth2016-08-261-0/+2
|
* Require modifiers to contain "_".chriseth2016-08-162-1/+29
|