refactor: remove some facades (#12335)

This commit is contained in:
Victor Berchet
2016-10-19 13:42:39 -07:00
committed by Alex Rickabaugh
parent 0ecd9b2df0
commit 76dd026447
58 changed files with 281 additions and 429 deletions

View File

@ -6,10 +6,7 @@
* found in the LICENSE file at https://angular.io/license
*/
import {NumberWrapper, escapeRegExp, hasConstructor} from '../src/lang';
class MySuperclass {}
class MySubclass extends MySuperclass {}
import {NumberWrapper, escapeRegExp} from '../src/lang';
export function main() {
describe('RegExp', () => {
@ -22,13 +19,6 @@ export function main() {
});
describe('const', () => {
it('should support const expressions both in TS and Dart', () => {
const numbers = [1, 2, 3];
expect(numbers).toEqual([1, 2, 3]);
});
});
describe('Number', () => {
describe('isNumeric', () => {
it('should return true when passing correct numeric string',