Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
staticAttr(name: str, namespace: str) {
let value = this.popValue();
this.push([Ops.StaticAttr, name, value, namespace]);
}
static(name: string, value: string) {
this.buffer.push([Ops.StaticAttr, name, value, null]);
}