OLD | NEW |
---|---|
1 | 1 |
2 class _HashChangeEventJs extends _EventJs implements HashChangeEvent native "*Ha shChangeEvent" { | 2 class _HashChangeEventJs extends _EventJs implements HashChangeEvent native "*Ha shChangeEvent" { |
3 | 3 |
4 String get newURL() native "return this.newURL;"; | 4 final String newURL; |
5 | 5 |
6 String get oldURL() native "return this.oldURL;"; | 6 final String oldURL; |
7 | 7 |
8 void initHashChangeEvent(String type, bool canBubble, bool cancelable, String oldURL, String newURL) native; | 8 void initHashChangeEvent(String type, bool canBubble, bool cancelable, String oldURL, String newURL) native; |
9 } | 9 } |
OLD | NEW |