(tagName: string, property: string, schemas: any[])
| 30 | ) {} |
| 31 | |
| 32 | hasProperty(tagName: string, property: string, schemas: any[]): boolean { |
| 33 | const value = this.existingProperties[property]; |
| 34 | return value === void 0 ? true : value; |
| 35 | } |
| 36 | |
| 37 | hasElement(tagName: string, schemaMetas: any[]): boolean { |
| 38 | const value = this.existingElements[tagName.toLowerCase()]; |
no outgoing calls
no test coverage detected