aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorErik Kundt <bitshift@posteo.org>2018-04-23 22:20:37 +0800
committerErik Kundt <bitshift@posteo.org>2018-04-23 23:09:42 +0800
commitb2ff9bc88d50e89419317d54b00e80b4c18a92c7 (patch)
tree117693a6a9f8cf82ef0618007bdd7b6e65ebd8f1
parentf2b58de92cdffe9d6e70aff2f0198277a5da335a (diff)
downloaddexon-solidity-b2ff9bc88d50e89419317d54b00e80b4c18a92c7.tar.gz
dexon-solidity-b2ff9bc88d50e89419317d54b00e80b4c18a92c7.tar.zst
dexon-solidity-b2ff9bc88d50e89419317d54b00e80b4c18a92c7.zip
Turns it into warning (error for 0.5.0) and adds Changelog entry.
-rw-r--r--Changelog.md2
-rw-r--r--libsolidity/analysis/TypeChecker.cpp9
-rw-r--r--test/libsolidity/syntaxTests/types/empty_tuple_event.sol2
-rw-r--r--test/libsolidity/syntaxTests/types/empty_tuple_event_050.sol2
-rw-r--r--test/libsolidity/syntaxTests/types/empty_tuple_function.sol7
-rw-r--r--test/libsolidity/syntaxTests/types/empty_tuple_function_050.sol11
-rw-r--r--test/libsolidity/syntaxTests/types/empty_tuple_function_self.sol8
-rw-r--r--test/libsolidity/syntaxTests/types/empty_tuple_lvalue.sol6
-rw-r--r--test/libsolidity/syntaxTests/types/empty_tuple_lvalue_050.sol11
-rw-r--r--test/libsolidity/syntaxTests/types/empty_tuple_lvalue_array.sol13
10 files changed, 54 insertions, 17 deletions
diff --git a/Changelog.md b/Changelog.md
index 0fbce7c5..b0c0b934 100644
--- a/Changelog.md
+++ b/Changelog.md
@@ -5,7 +5,7 @@ Features:
* Type Checker: Make literals (without explicit type casting) an error for tight packing as experimental 0.5.0 feature.
Bugfixes:
-
+ * Type Checker: Warn about empty tuple components (this will turn into an error with version 0.5.0).
### 0.4.23 (2018-04-19)
diff --git a/libsolidity/analysis/TypeChecker.cpp b/libsolidity/analysis/TypeChecker.cpp
index 2675b7eb..53409e6c 100644
--- a/libsolidity/analysis/TypeChecker.cpp
+++ b/libsolidity/analysis/TypeChecker.cpp
@@ -1406,8 +1406,10 @@ bool TypeChecker::visit(TupleExpression const& _tuple)
}
else
{
+ bool const v050 = m_scope->sourceUnit().annotation().experimentalFeatures.count(ExperimentalFeature::V050);
bool isPure = true;
TypePointer inlineArrayType;
+
for (size_t i = 0; i < components.size(); ++i)
{
// Outside of an lvalue-context, the only situation where a component can be empty is (x,).
@@ -1420,7 +1422,12 @@ bool TypeChecker::visit(TupleExpression const& _tuple)
if (types[i]->category() == Type::Category::Tuple)
if (dynamic_cast<TupleType const&>(*types[i]).components().empty())
- m_errorReporter.fatalTypeError(components[i]->location(), "Type of tuple component cannot be null.");
+ {
+ if (v050)
+ m_errorReporter.fatalTypeError(components[i]->location(), "Tuple component cannot be empty.");
+ else
+ m_errorReporter.warning(components[i]->location(), "Tuple component cannot be empty.");
+ }
// Note: code generation will visit each of the expression even if they are not assigned from.
if (types[i]->category() == Type::Category::RationalNumber && components.size() > 1)
diff --git a/test/libsolidity/syntaxTests/types/empty_tuple_event.sol b/test/libsolidity/syntaxTests/types/empty_tuple_event.sol
index 10b9f345..3e40b155 100644
--- a/test/libsolidity/syntaxTests/types/empty_tuple_event.sol
+++ b/test/libsolidity/syntaxTests/types/empty_tuple_event.sol
@@ -7,4 +7,4 @@ contract C {
}
// ----
// Warning: (95-106): Invoking events without "emit" prefix is deprecated.
-// TypeError: (95-106): Type of tuple component cannot be null.
+// Warning: (95-106): Tuple component cannot be empty.
diff --git a/test/libsolidity/syntaxTests/types/empty_tuple_event_050.sol b/test/libsolidity/syntaxTests/types/empty_tuple_event_050.sol
index 072234cb..aec5ff2a 100644
--- a/test/libsolidity/syntaxTests/types/empty_tuple_event_050.sol
+++ b/test/libsolidity/syntaxTests/types/empty_tuple_event_050.sol
@@ -7,4 +7,4 @@ contract C {
}
// ----
// TypeError: (101-112): Event invocations have to be prefixed by "emit".
-// TypeError: (101-112): Type of tuple component cannot be null.
+// TypeError: (101-112): Tuple component cannot be empty.
diff --git a/test/libsolidity/syntaxTests/types/empty_tuple_function.sol b/test/libsolidity/syntaxTests/types/empty_tuple_function.sol
index 33a55b95..05b54442 100644
--- a/test/libsolidity/syntaxTests/types/empty_tuple_function.sol
+++ b/test/libsolidity/syntaxTests/types/empty_tuple_function.sol
@@ -1,11 +1,12 @@
pragma solidity ^0.4.3;
contract C {
- function f() {}
- function a() public {
+ function f() private pure {}
+ function a() public pure {
bool x = true;
bool y = true;
(x) ? (f(), y = false) : (f(), y = false);
}
}
// ----
-// TypeError: (144-147): Type of tuple component cannot be null.
+// Warning: (162-165): Tuple component cannot be empty.
+// Warning: (181-184): Tuple component cannot be empty.
diff --git a/test/libsolidity/syntaxTests/types/empty_tuple_function_050.sol b/test/libsolidity/syntaxTests/types/empty_tuple_function_050.sol
new file mode 100644
index 00000000..c4b9e03f
--- /dev/null
+++ b/test/libsolidity/syntaxTests/types/empty_tuple_function_050.sol
@@ -0,0 +1,11 @@
+pragma experimental "v0.5.0";
+contract C {
+ function f() private pure {}
+ function a() public pure {
+ bool x = true;
+ bool y = true;
+ (x) ? (f(), y = false) : (f(), y = false);
+ }
+}
+// ----
+// TypeError: (168-171): Tuple component cannot be empty.
diff --git a/test/libsolidity/syntaxTests/types/empty_tuple_function_self.sol b/test/libsolidity/syntaxTests/types/empty_tuple_function_self.sol
deleted file mode 100644
index 27ab1131..00000000
--- a/test/libsolidity/syntaxTests/types/empty_tuple_function_self.sol
+++ /dev/null
@@ -1,8 +0,0 @@
-pragma solidity ^0.4.3;
-contract C {
- function a() public {
- (a(), 7);
- }
-}
-// ----
-// TypeError: (72-75): Type of tuple component cannot be null.
diff --git a/test/libsolidity/syntaxTests/types/empty_tuple_lvalue.sol b/test/libsolidity/syntaxTests/types/empty_tuple_lvalue.sol
index e7ae4b29..cba30c1b 100644
--- a/test/libsolidity/syntaxTests/types/empty_tuple_lvalue.sol
+++ b/test/libsolidity/syntaxTests/types/empty_tuple_lvalue.sol
@@ -1,6 +1,6 @@
pragma solidity ^0.4.3;
contract C {
- function f() public pure {}
+ function f() private pure {}
function a() public {
uint x;
uint y;
@@ -8,4 +8,6 @@ contract C {
}
}
// ----
-// TypeError: (145-148): Type of tuple component cannot be null.
+// Warning: (146-149): Tuple component cannot be empty.
+// Warning: (151-154): Tuple component cannot be empty.
+// TypeError: (145-155): Type tuple(tuple(),tuple()) is not implicitly convertible to expected type tuple(uint256,uint256).
diff --git a/test/libsolidity/syntaxTests/types/empty_tuple_lvalue_050.sol b/test/libsolidity/syntaxTests/types/empty_tuple_lvalue_050.sol
new file mode 100644
index 00000000..b0691778
--- /dev/null
+++ b/test/libsolidity/syntaxTests/types/empty_tuple_lvalue_050.sol
@@ -0,0 +1,11 @@
+pragma experimental "v0.5.0";
+contract C {
+ function f() private pure {}
+ function a() public {
+ uint x;
+ uint y;
+ (x, y) = (f(), f());
+ }
+}
+// ----
+// TypeError: (152-155): Tuple component cannot be empty.
diff --git a/test/libsolidity/syntaxTests/types/empty_tuple_lvalue_array.sol b/test/libsolidity/syntaxTests/types/empty_tuple_lvalue_array.sol
new file mode 100644
index 00000000..8d77df47
--- /dev/null
+++ b/test/libsolidity/syntaxTests/types/empty_tuple_lvalue_array.sol
@@ -0,0 +1,13 @@
+pragma solidity ^0.4.3;
+contract C {
+ function f() private pure {}
+ function a() public {
+ uint x;
+ uint y;
+ (x, y) = [f(), f()];
+ }
+}
+// ----
+// Warning: (146-149): Tuple component cannot be empty.
+// Warning: (151-154): Tuple component cannot be empty.
+// TypeError: (145-155): Type tuple()[2] memory is not implicitly convertible to expected type tuple(uint256,uint256).