Files
Erik Ernst 0fcdc08e60 Change language tests to avoid unintended syntax errors
The new feature 'declaring constructors' will change the syntax such
that it is an error for a non-declaring formal parameter declaration
to have the modifier `final`, and it is an error to use `var` as a
replacement for a type annotation (but the type annotation can still
be omitted entirely). This CL removes those modifiers such that the
tests will not start failing on things that aren't errors any more.

Change-Id: Ie6628f66eca696b28900759d8234b814033b4027
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/456740
Reviewed-by: Chloe Stefantsova <cstefantsova@google.com>
Commit-Queue: Erik Ernst <eernst@google.com>
2025-10-27 01:35:09 -07:00

226 lines
4.7 KiB
Dart

// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
// Formatting can break multitests, so don't format them.
// dart format off
class SyntaxTest {
// "this" cannot be used as a field name.
SyntaxTest this; //# 01: syntax error
// Syntax error.
foo {} //# 02: syntax error
// Syntax error.
static foo {} //# 03: syntax error
// Syntax error.
operator +=() {} //# 04: syntax error
// Syntax error.
operator -=() {} //# 05: syntax error
// Syntax error.
operator *=() {} //# 06: syntax error
// Syntax error.
operator /=() {} //# 07: syntax error
// Syntax error.
operator ~/=() {} //# 08: syntax error
// Syntax error.
operator %=() {} //# 09: syntax error
// Syntax error.
operator <<=() {} //# 10: syntax error
// Syntax error.
operator >>=() {} //# 11: syntax error
// Syntax error.
operator >>>=() {} //# 12: syntax error
// Syntax error.
operator &=() {} //# 13: syntax error
// Syntax error.
operator ^=() {} //# 14: syntax error
// Syntax error.
operator |=() {} //# 15: syntax error
// Syntax error.
operator ?() {} //# 16: syntax error
// Syntax error.
operator ||() {} //# 17: syntax error
// Syntax error.
operator &&() {} //# 18: syntax error
// Syntax error.
operator !=() {} //# 19: syntax error
// Syntax error.
operator ===() {} //# 20: syntax error
// Syntax error.
operator !==() {} //# 21: syntax error
// Syntax error.
operator is() {} //# 22: syntax error
// Syntax error.
operator !() {} //# 23: syntax error
// Syntax error.
operator ++() {} //# 24: syntax error
// Syntax error.
operator --() {} //# 25: syntax error
// Syntax error.
bool operator ===(A other) { return true; } //# 26: syntax error
int sample = -1;
}
fisk {} //# 27: syntax error
class DOMWindow {}
abstract class Fisk {}
abstract class I implements UNKNOWN; //# 34: compile-time error
class XWindow extends DOMWindow
hest "*Window" //# 35: syntax error
{}
class XConsole
hest "=(typeof console == 'undefined' ? {} : console)" //# 36: syntax error
{}
class XNativeClass
hest "FooBar" //# 37: syntax error
{}
class XBoolImplementation implements Fisk
hest "Boolean" //# 38: syntax error
{}
class _JSONX
hest 'JSON' //# 39: syntax error
{}
class XListFactory<E> implements List<E>
hest "Array" //# 40: syntax error
{
noSuchMethod(_) => null; // Allow unimplemented methods
}
class YWindow extends DOMWindow
for "*Window" //# 41: syntax error
{}
class YConsole
for "=(typeof console == 'undefined' ? {} : console)" //# 42: syntax error
{}
class YNativeClass
for "FooBar" //# 43: syntax error
{}
class YBoolImplementation implements Fisk
for "Boolean" //# 44: syntax error
{}
class _JSONY
for 'JSON' //# 45: syntax error
{}
class YListFactory<E> implements List<E>
for "Array" //# 46: syntax error
{
noSuchMethod(_) => null; // Allow unimplemented methods
}
class A {
const A()
{} //# 47: syntax error
;
}
abstract class G<T> {}
typedef <T>(); //# 48: compile-time error
class B
extends void //# 49: syntax error
{}
main() {
try {
new SyntaxTest();
new SyntaxTest().foo(); //# 02: continued
SyntaxTest.foo(); //# 03: continued
fisk(); //# 27: continued
var x = null;
x is I; //# 34: continued
new XConsole();
new XNativeClass();
new XBoolImplementation();
new _JSONX();
new XListFactory();
new XListFactory<Object>();
new YConsole();
new YNativeClass();
new YBoolImplementation();
new _JSONY();
new YListFactory();
new YListFactory<Object>();
futureOf(x) {}
if (!(fisk futureOf(false))) {} //# 50: syntax error
if (!(await futureOf(false))) {} //# 51: compile-time error
void f{} //# 52: syntax error
G<int double> g; //# 53: syntax error
f(void) {}; //# 54: syntax error
optionalArg([x]) {}
optionalArg(
void (var i) {} //# 55: syntax error
);
function __PROTO__$(...args) { return 12; } //# 56: syntax error
G<> t; //# 57: syntax error
G<null> t; //# 58: syntax error
A<void> a = null; //# 59: compile-time error
void v; //# 60: ok
void v = null; //# 61: ok
print(null is void); //# 62: syntax error
new A();
new B();
new Bad();
1 + 2 = 1; //# 63: syntax error
new SyntaxTest() = 1; //# 64: syntax error
futureOf(1 + 2) = 1; //# 65: syntax error
} catch (ex) {
// Swallowing exceptions. Any error should be a compile-time error
// which kills the current isolate.
}
}
class Bad {
factory Bad<Bad(String type) { return null; } //# 63: syntax error
}