You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@Waldemar: What about dynamically generated types?
@Waldemar: to what extent do typecheckers look into dynamically generated types/classes? For example:
classB{};// TODO(goto): this actually doesn't work, come up with a better example.eval("class A extends B {}");varb: B=newA();// Does this generate a type error in the typechecker?