mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-05-26 00:36:29 -05:00
Accept baselines: extra parens
This commit is contained in:
@@ -2,4 +2,4 @@
|
||||
var v = a => <any>{}
|
||||
|
||||
//// [arrowFunctionWithObjectLiteralBody1.js]
|
||||
var v = function (a) { return {}; };
|
||||
var v = function (a) { return ({}); };
|
||||
|
||||
@@ -2,4 +2,4 @@
|
||||
var v = a => <any><any>{}
|
||||
|
||||
//// [arrowFunctionWithObjectLiteralBody2.js]
|
||||
var v = function (a) { return {}; };
|
||||
var v = function (a) { return ({}); };
|
||||
|
||||
Reference in New Issue
Block a user