adding render scheme

This commit is contained in:
metacryst
2024-03-18 04:43:57 +01:00
parent 7f12cf439b
commit 802a39f502
5 changed files with 175 additions and 78 deletions

View File

@@ -2,12 +2,12 @@ window.testSuites.push( class testParse {
testParseClassFieldsWithNoDefault() {
class Space extends HTMLElement {
class Space extends Shadow {
form
contents = []
constructor() {
super()
constructor(...params) {
super(...params)
}
}
@@ -18,7 +18,7 @@ testParseClassFieldsWithNoDefault() {
}
testParseClassFieldsWithEqualityCheck() {
class Space extends HTMLElement {
class Space extends Shadow {
form = Forms.observe(window.location.pathname, this)
contents = [
@@ -34,8 +34,8 @@ testParseClassFieldsWithEqualityCheck() {
})
]
constructor() {
super()
constructor(...params) {
super(...params)
}
}
@@ -46,7 +46,7 @@ testParseClassFieldsWithEqualityCheck() {
}
testParseClassFieldsWithInnerFunctionVariable() {
class Space extends HTMLElement {
class Space extends Shadow {
form = Forms.observe(window.location.pathname, this)
contents = [
@@ -64,8 +64,8 @@ testParseClassFieldsWithInnerFunctionVariable() {
})
]
constructor() {
super()
constructor(...params) {
super(...params)
}
}