IDL2K: properly handle clash or val and var attributes

This commit is contained in:
Sergey Mashkov
2016-12-05 23:17:23 +03:00
parent 0d99801783
commit e7d6711db3
2 changed files with 17 additions and 3 deletions
+4 -2
View File
@@ -33,12 +33,14 @@ import org.w3c.xhr.*
set(value) = noImpl
open val rootElement: SVGSVGElement?
get() = noImpl
open val title: String
var title: String
get() = noImpl
set(value) = noImpl
open val referrer: String
get() = noImpl
open val domain: String
var domain: String
get() = noImpl
set(value) = noImpl
open val activeElement: Element?
get() = noImpl
open val location: Location?