Files
sdk/runtime
Jens Johansen e1d7e33aad [kernel] const constructor type arguments
```
class A<T> {
  const A();
  Type get type => T;
}

class B extends A<String>{
  const B();
}

main() {
  print(const B().type);
}
```

Should print "String".
Before this CL it printed "dynamic", now it prints "String".

See dartbug.com/30588 for more information.

BUG=
R=kustermann@google.com

Review-Url: https://codereview.chromium.org/3007123002 .
2017-09-04 13:24:27 +02:00
..
2017-08-04 22:19:35 -07:00
2017-08-18 08:51:40 -07:00