Disallow extension properties with backing fields

#KT-1682 Fixed
This commit is contained in:
Alexander Udalov
2014-05-28 19:17:31 +04:00
parent ea31f372aa
commit d78d4bc44c
72 changed files with 297 additions and 578 deletions
+1 -1
View File
@@ -36,7 +36,7 @@ native public fun String.match(regex : String) : Array<String> = js.noImpl
native public fun String.trim() : String = js.noImpl
native("length")
public val CharSequence.size: Int = js.noImpl
public val CharSequence.size: Int get() = js.noImpl
library
public fun CharSequence.length(): Int = js.noImpl
+1 -1
View File
@@ -7,7 +7,7 @@ public fun createDocument(): Document {
return js.dom.html.document.implementation.createDocument(null, null, null)
}
native public val Node.outerHTML: String = js.noImpl
native public val Node.outerHTML: String get() = js.noImpl
/** Converts the node to an XML String */
public fun Node.toXmlString(): String = this.outerHTML