Files
addon/lib/js2py/constructors/jsregexp.py
2025-01-16 00:40:16 +01:00

17 lines
346 B
Python
Executable File

from ..base import *
RegExpPrototype.define_own_property('constructor', {
'value': RegExp,
'enumerable': False,
'writable': True,
'configurable': True
})
RegExp.define_own_property(
'prototype', {
'value': RegExpPrototype,
'enumerable': False,
'writable': False,
'configurable': False
})