15dc147226
Change-Id: Iad2300d8fa5384b5d692c5598c9311e600427dd2 Reviewed-on: https://dart-review.googlesource.com/c/90003 Commit-Queue: Peter von der Ahé <ahe@google.com> Reviewed-by: Dmitry Stefantsov <dmitryas@google.com>
52 lines
3.3 KiB
Plaintext
52 lines
3.3 KiB
Plaintext
library;
|
|
//
|
|
// Problems in library:
|
|
//
|
|
// pkg/front_end/testcases/cascade.dart:26:5: Error: A value of type 'List<int>' can't be assigned to a variable of type 'int'.
|
|
// - 'List' is from 'dart:core'.
|
|
// Try changing the type of the left hand side, or casting the right hand side to 'int'.
|
|
// [1]
|
|
// ^
|
|
//
|
|
// pkg/front_end/testcases/cascade.dart:28:13: Error: The getter 'last' isn't defined for the class 'int'.
|
|
// Try correcting the name to the name of an existing getter, or defining a getter or field named 'last'.
|
|
// ..first.last.toString()
|
|
// ^^^^
|
|
//
|
|
// pkg/front_end/testcases/cascade.dart:29:12: Error: The method '[]' isn't defined for the class 'int'.
|
|
// Try correcting the name to the name of an existing method, or defining a method named '[]'.
|
|
// ..first[0].toString()
|
|
// ^^
|
|
//
|
|
// pkg/front_end/testcases/cascade.dart:30:11: Error: The getter 'last' isn't defined for the class 'int'.
|
|
// Try correcting the name to the name of an existing getter, or defining a getter or field named 'last'.
|
|
// ..[0].last.toString();
|
|
// ^^^^
|
|
//
|
|
import self as self;
|
|
import "dart:core" as core;
|
|
|
|
static method main() → dynamic {
|
|
core::List<core::int> list = let final core::List<core::int> #t1 = <core::int>[1] in let final dynamic #t2 = #t1.{core::List::add}(2) in let final dynamic #t3 = #t1.{core::List::add}(3) in let final dynamic #t4 = #t1.{core::List::addAll}(<core::int>[4, 5]) in #t1;
|
|
core::print(list);
|
|
let final core::List<core::int> #t5 = list in let final dynamic #t6 = #t5.{core::List::add}(2) in let final dynamic #t7 = #t5.{core::List::length} in let final dynamic #t8 = #t5.{core::List::length} = 0 in #t5;
|
|
core::print(list);
|
|
let final core::List<core::int> #t9 = list in let final dynamic #t10 = #t9.{core::List::add}(2) in let final dynamic #t11 = #t9.{core::List::[]}(0) in let final dynamic #t12 = #t9.{core::List::[]=}(0, 87) in #t9;
|
|
core::print(list);
|
|
list = let final core::List<core::int> #t13 = <core::int>[let final<BottomType> #t14 = invalid-expression "pkg/front_end/testcases/cascade.dart:26:5: Error: A value of type 'List<int>' can't be assigned to a variable of type 'int'.
|
|
- 'List' is from 'dart:core'.
|
|
Try changing the type of the left hand side, or casting the right hand side to 'int'.
|
|
[1]
|
|
^" in <core::int>[1] as{TypeError} core::int] in let final dynamic #t15 = invalid-expression "pkg/front_end/testcases/cascade.dart:28:13: Error: The getter 'last' isn't defined for the class 'int'.
|
|
Try correcting the name to the name of an existing getter, or defining a getter or field named 'last'.
|
|
..first.last.toString()
|
|
^^^^".{core::Object::toString}() in let final dynamic #t16 = invalid-expression "pkg/front_end/testcases/cascade.dart:29:12: Error: The method '[]' isn't defined for the class 'int'.
|
|
Try correcting the name to the name of an existing method, or defining a method named '[]'.
|
|
..first[0].toString()
|
|
^^".{core::Object::toString}() in let final dynamic #t17 = invalid-expression "pkg/front_end/testcases/cascade.dart:30:11: Error: The getter 'last' isn't defined for the class 'int'.
|
|
Try correcting the name to the name of an existing getter, or defining a getter or field named 'last'.
|
|
..[0].last.toString();
|
|
^^^^".{core::Object::toString}() in #t13;
|
|
core::print(list);
|
|
}
|