refactor(facade/lang): remove unneded semicolons

Those were previously enforced incorrectly by clang-format

Closes #1816
This commit is contained in:
Pawel Kozlowski 2015-05-11 21:52:41 +02:00
parent f8f79dc76c
commit 655ed851f0
1 changed files with 4 additions and 4 deletions

View File

@ -32,8 +32,8 @@ var int;
if (assertionsEnabled_) {
_global.assert = assert;
// `int` is not a valid JS type
int = assert.define(
'int', function(value) { return typeof value === 'number' && value % 1 === 0; });
int = assert.define('int',
function(value) { return typeof value === 'number' && value % 1 === 0; });
} else {
int = {};
_global.assert = function() {};
@ -44,10 +44,10 @@ export {int};
// see https://github.com/angular/ts2dart/pull/151 for more info
export function CONST_EXPR<T>(expr: T): T {
return expr;
};
}
export function CONST() {
return (target) => target;
};
}
export class ABSTRACT {}
export class IMPLEMENTS {}