angular2
Version:
Angular 2 - a web framework for modern web apps
18 lines (14 loc) • 359 B
JavaScript
// TODO(vicb): implement this class properly
// The current stub implementation is only here to please cjs tests
export class VmTurnZone {
constructor({enableLongStackTrace}) {
}
initCallbacks({onTurnStart, onTurnDone, onScheduleMicrotask, onErrorHandler} = {}) {
}
run(fn) {
return fn();
}
runOutsideAngular(fn) {
return fn();
}
}