refactor(render): move services to right location

core/compiler/events -> render/dom/events
core/compiler/url_resolver -> services/url_resolver
core/compiler/xhr/* -> services/*
This commit is contained in:
Tobias Bosch
2015-04-02 09:52:00 -07:00
parent bcbf1ccc68
commit 4f56628566
39 changed files with 61 additions and 61 deletions

View File

@ -1,4 +1,4 @@
import {XHR} from 'angular2/src/core/compiler/xhr/xhr';
import {XHR} from 'angular2/src/services/xhr';
import {List, ListWrapper, Map, MapWrapper} from 'angular2/src/facade/collection';
import {isBlank, isPresent, normalizeBlank, BaseException} from 'angular2/src/facade/lang';
import {PromiseWrapper, Promise} from 'angular2/src/facade/async';