refactor: move rtts-assert into modules directory

The rtts assertion lib is only needed for js, 
but it should be treated like any other module (e.g. facade, …)
This commit is contained in:
Tobias Bosch
2014-09-26 17:36:57 -07:00
parent c3b442ea53
commit c8cf03f200
9 changed files with 789 additions and 10 deletions

View File

@ -21,7 +21,7 @@ export class View {
onRecordChange(record:Record, target) {
// dispatch to element injector or text nodes based on context
if (target is ElementInjectorTarge) {
if (target instanceof ElementInjectorTarge) {
// we know that it is ElementInjectorTarge
var eTarget:ElementInjectorTarget = target;
onChangeDispatcher.notify(this, eTarget);