Skip to content
This repository was archived by the owner on May 22, 2025. It is now read-only.

Commit 298d656

Browse files
committed
adjust golden for missing trailing semicolon.
1 parent b649280 commit 298d656

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

test_files/type/type.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ let typeOptionalUnion: {optional?: string|boolean} = {};
2626

2727
let typeFunc: () => void = function() {};
2828
let typeFunc2: (a: number, b: any) => string = function(a, b) { return ''; };
29-
let typeFunc3: (x: number, callback: (x: number) => string) => string = function(x, cb) { return ''; }
29+
let typeFunc3: (x: number, callback: (x: number) => string) => string = function(x, cb) { return ''; };
3030
// TODO: let typeFunc4: (a: number, ...args: number[]) => void;
3131

3232
function typeCallback(callback: (val: number) => number) { }

test_files/type/type.tsickle.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ let /** @type {{optional: (undefined|string|boolean)}} */ typeOptionalUnion: {op
3434

3535
let /** @type {function(): void} */ typeFunc: () => void = function() {};
3636
let /** @type {function(number, ?): string} */ typeFunc2: (a: number, b: any) => string = function(a, b) { return ''; };
37-
let /** @type {function(number, function(number): string): string} */ typeFunc3: (x: number, callback: (x: number) => string) => string = function(x, cb) { return ''; }
37+
let /** @type {function(number, function(number): string): string} */ typeFunc3: (x: number, callback: (x: number) => string) => string = function(x, cb) { return ''; };
3838
/**
3939
* @param {function(number): number} callback
4040
* @return {void}

0 commit comments

Comments
 (0)