refactor(view): refactored DirectiveMemento to expose properties in a consistent way
This commit is contained in:
@ -780,11 +780,11 @@ class TestData {
|
||||
|
||||
class FakeDirectiveMemento {
|
||||
value:any;
|
||||
notifyOnAllChangesDone:boolean;
|
||||
callOnAllChangesDone:boolean;
|
||||
|
||||
constructor(value, notifyOnAllChangesDone:boolean = false) {
|
||||
constructor(value, callOnAllChangesDone:boolean = false) {
|
||||
this.value = value;
|
||||
this.notifyOnAllChangesDone = notifyOnAllChangesDone;
|
||||
this.callOnAllChangesDone = callOnAllChangesDone;
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user