Closed fixplz closed 9 years ago
When you write function f2 (to: X.Y.Z.Type) {} we currently get a duck typing fail with Babel's AST and we generate deficient code. This adds support for this form – it resolves X.Y.Z.Type like an expression.
function f2 (to: X.Y.Z.Type) {}
X.Y.Z.Type
@fixplz thanks!
Nice reaction time!
When you write
function f2 (to: X.Y.Z.Type) {}
we currently get a duck typing fail with Babel's AST and we generate deficient code. This adds support for this form – it resolvesX.Y.Z.Type
like an expression.