-
-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update README. fix type checking of method return type support javascript sources. closes #52 Migrate conflicting-attribute. closes #32 ensure unknown converters fail silently. Check bindable field is okay. ref #35 Support Syntax Rule configuration Support any attribute order for controllers. ref #35 Support Keyed Access. ref #35 Fix negated if.bind support interpolation within binding. support custom typings. closes #36 reject access to private fields. ref: #35 support ancestor scope with correct context ref: #35 fix view-model resolution. ref: #35 fix inheriting locals ref: #35 update and unlock versions improve unhandled error msg replace repeatfor. closes #40 fix view-model not found rework static-type rule closes #33
- Loading branch information
1 parent
e363183
commit 8f706df
Showing
26 changed files
with
1,695 additions
and
1,090 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,4 +24,5 @@ | |
<td>${item.nme}</td> | ||
</tr> | ||
</table> | ||
${car.modl} | ||
</etemps> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,11 @@ | ||
import {Person} from './my-types/person'; | ||
import {Item} from './my-types/item'; | ||
import {Car} from 'my-lib'; | ||
|
||
export class FooViewModel { | ||
person: Person; | ||
items: Item[]; | ||
car: Car; | ||
width:number; | ||
height:number; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
export class Generic<T> | ||
{ | ||
value:T; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.