mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Merge pull request #9305 from ethereum/yul-dot-tests
Add Yul syntax tests for dots in identifiers
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
{
|
||||
function _...($..) {}
|
||||
let a...
|
||||
_...(a...)
|
||||
}
|
||||
// ----
|
||||
@@ -0,0 +1,4 @@
|
||||
{
|
||||
function x..y() {}
|
||||
}
|
||||
// ----
|
||||
@@ -0,0 +1,4 @@
|
||||
{
|
||||
function x(a..b) {}
|
||||
}
|
||||
// ----
|
||||
@@ -0,0 +1,4 @@
|
||||
{
|
||||
function x() -> a..b {}
|
||||
}
|
||||
// ----
|
||||
@@ -0,0 +1,4 @@
|
||||
{
|
||||
let a..b := 1
|
||||
}
|
||||
// ----
|
||||
@@ -0,0 +1,4 @@
|
||||
{
|
||||
function x...y() {}
|
||||
}
|
||||
// ----
|
||||
@@ -0,0 +1,4 @@
|
||||
{
|
||||
function x(a...b) {}
|
||||
}
|
||||
// ----
|
||||
@@ -0,0 +1,4 @@
|
||||
{
|
||||
function x() -> a...b {}
|
||||
}
|
||||
// ----
|
||||
@@ -0,0 +1,4 @@
|
||||
{
|
||||
let a...b := 1
|
||||
}
|
||||
// ----
|
||||
@@ -0,0 +1,5 @@
|
||||
{
|
||||
function .x() {}
|
||||
}
|
||||
// ----
|
||||
// ParserError 2314: (15-16): Expected identifier but got '.'
|
||||
@@ -0,0 +1,5 @@
|
||||
{
|
||||
function x(.a) {}
|
||||
}
|
||||
// ----
|
||||
// ParserError 2314: (17-18): Expected identifier but got '.'
|
||||
@@ -0,0 +1,5 @@
|
||||
{
|
||||
function x() -> .a {}
|
||||
}
|
||||
// ----
|
||||
// ParserError 2314: (22-23): Expected identifier but got '.'
|
||||
@@ -0,0 +1,5 @@
|
||||
{
|
||||
let .a := 1
|
||||
}
|
||||
// ----
|
||||
// ParserError 2314: (10-11): Expected identifier but got '.'
|
||||
@@ -0,0 +1,4 @@
|
||||
{
|
||||
function x.y() {}
|
||||
}
|
||||
// ----
|
||||
@@ -0,0 +1,4 @@
|
||||
{
|
||||
function x(a.b) {}
|
||||
}
|
||||
// ----
|
||||
@@ -0,0 +1,4 @@
|
||||
{
|
||||
function x() -> a.b {}
|
||||
}
|
||||
// ----
|
||||
@@ -0,0 +1,4 @@
|
||||
{
|
||||
let a.b := 1
|
||||
}
|
||||
// ----
|
||||
@@ -0,0 +1,4 @@
|
||||
{
|
||||
function x.() {}
|
||||
}
|
||||
// ----
|
||||
@@ -0,0 +1,4 @@
|
||||
{
|
||||
function x(a.) {}
|
||||
}
|
||||
// ----
|
||||
@@ -0,0 +1,4 @@
|
||||
{
|
||||
function x() -> a. {}
|
||||
}
|
||||
// ----
|
||||
@@ -0,0 +1,4 @@
|
||||
{
|
||||
let a. := 1
|
||||
}
|
||||
// ----
|
||||
Reference in New Issue
Block a user