mirror of
https://github.com/microsoft/TypeScript.git
synced 2025-11-18 17:21:48 +00: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