c191551fac
TEST=Covered by existing tests. Change-Id: Ied8be1874164e68e0a3a48e1b2f9a33310071381 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/183009 Commit-Queue: Dmitry Stefantsov <dmitryas@google.com> Reviewed-by: Johnni Winther <johnniwinther@google.com>
53 lines
2.7 KiB
Plaintext
53 lines
2.7 KiB
Plaintext
library;
|
|
//
|
|
// Problems in library:
|
|
//
|
|
// pkg/front_end/testcases/rasta/issue_000046.dart:6:13: Error: Expected '(' after this.
|
|
// C c = new Object)();
|
|
// ^^^^^^
|
|
//
|
|
// pkg/front_end/testcases/rasta/issue_000046.dart:6:19: Error: Expected ';' after this.
|
|
// C c = new Object)();
|
|
// ^
|
|
//
|
|
// pkg/front_end/testcases/rasta/issue_000046.dart:6:19: Error: Expected a class member, but got ')'.
|
|
// C c = new Object)();
|
|
// ^
|
|
//
|
|
// pkg/front_end/testcases/rasta/issue_000046.dart:6:20: Error: Expected an identifier, but got '('.
|
|
// Try inserting an identifier before '('.
|
|
// C c = new Object)();
|
|
// ^
|
|
//
|
|
// pkg/front_end/testcases/rasta/issue_000046.dart:6:13: Error: The constructor returns type 'Object' that isn't of expected type 'C'.
|
|
// - 'Object' is from 'dart:core'.
|
|
// - 'C' is from 'pkg/front_end/testcases/rasta/issue_000046.dart'.
|
|
// Change the type of the object being constructed or the context in which it is used.
|
|
// C c = new Object)();
|
|
// ^
|
|
//
|
|
import self as self;
|
|
import "dart:core" as core;
|
|
|
|
class C extends core::Object {
|
|
field self::C* c = let final Never* #t1 = invalid-expression "pkg/front_end/testcases/rasta/issue_000046.dart:6:13: Error: The constructor returns type 'Object' that isn't of expected type 'C'.
|
|
- 'Object' is from 'dart:core'.
|
|
- 'C' is from 'pkg/front_end/testcases/rasta/issue_000046.dart'.
|
|
Change the type of the object being constructed or the context in which it is used.
|
|
C c = new Object)();
|
|
^" in new core::Object::•();
|
|
synthetic constructor •() → self::C*
|
|
: super core::Object::•()
|
|
;
|
|
abstract member-signature get _identityHashCode() → core::int*; -> core::Object::_identityHashCode
|
|
abstract member-signature method _instanceOf(dynamic instantiatorTypeArguments, dynamic functionTypeArguments, dynamic type) → core::bool*; -> core::Object::_instanceOf
|
|
abstract member-signature method _simpleInstanceOf(dynamic type) → core::bool*; -> core::Object::_simpleInstanceOf
|
|
abstract member-signature method _simpleInstanceOfTrue(dynamic type) → core::bool*; -> core::Object::_simpleInstanceOfTrue
|
|
abstract member-signature method _simpleInstanceOfFalse(dynamic type) → core::bool*; -> core::Object::_simpleInstanceOfFalse
|
|
abstract member-signature operator ==(dynamic other) → core::bool*; -> core::Object::==
|
|
abstract member-signature get hashCode() → core::int*; -> core::Object::hashCode
|
|
abstract member-signature method toString() → core::String*; -> core::Object::toString
|
|
abstract member-signature method noSuchMethod(core::Invocation* invocation) → dynamic; -> core::Object::noSuchMethod
|
|
abstract member-signature get runtimeType() → core::Type*; -> core::Object::runtimeType
|
|
}
|