refactor(): use const and let instead of var

This commit is contained in:
Joao Dias
2016-11-12 14:08:58 +01:00
committed by Victor Berchet
parent 73593d4bf3
commit 77ee27c59e
435 changed files with 4637 additions and 4663 deletions

View File

@ -17,7 +17,7 @@ import {setTemplateCache} from './resource_loader_cache_setter';
export function main() {
describe('CachedResourceLoader', () => {
var resourceLoader: CachedResourceLoader;
let resourceLoader: CachedResourceLoader;
function createCachedResourceLoader(): CachedResourceLoader {
setTemplateCache({'test.html': '<div>Hello</div>'});
@ -61,7 +61,7 @@ export function main() {
TestBed.compileComponents();
tick();
let fixture = TestBed.createComponent(TestComponent);
const fixture = TestBed.createComponent(TestComponent);
// This should initialize the fixture.
tick();

View File

@ -11,7 +11,7 @@ import {ResourceLoaderImpl} from '../../src/resource_loader/resource_loader_impl
export function main() {
describe('ResourceLoaderImpl', () => {
var resourceLoader: ResourceLoaderImpl;
let resourceLoader: ResourceLoaderImpl;
// TODO(juliemr): This file currently won't work with dart unit tests run using
// exclusive it or describe (iit or ddescribe). This is because when
@ -19,8 +19,8 @@ export function main() {
// will be relative to here, so url200 should look like
// static_assets/200.html.
// We currently have no way of detecting this.
var url200 = '/base/modules/@angular/platform-browser/test/browser/static_assets/200.html';
var url404 = '/bad/path/404.html';
const url200 = '/base/modules/@angular/platform-browser/test/browser/static_assets/200.html';
const url404 = '/bad/path/404.html';
beforeEach(() => { resourceLoader = new ResourceLoaderImpl(); });