Merge pull request #9305 from ethereum/yul-dot-tests

Add Yul syntax tests for dots in identifiers
This commit is contained in:
Alex Beregszaszi
2020-07-03 18:18:58 +01:00
committed by GitHub
21 changed files with 90 additions and 0 deletions
@@ -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
}
// ----