mirror of
https://github.com/evilhero/mylar
synced 2025-02-15 10:44:28 +00:00
11 lines
566 B
Python
11 lines
566 B
Python
|
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})
|