folder reorganization
This commit is contained in:
16
lib/js2py/constructors/jsboolean.py
Normal file
16
lib/js2py/constructors/jsboolean.py
Normal file
@@ -0,0 +1,16 @@
|
||||
from ..base import *
|
||||
|
||||
BooleanPrototype.define_own_property('constructor', {
|
||||
'value': Boolean,
|
||||
'enumerable': False,
|
||||
'writable': True,
|
||||
'configurable': True
|
||||
})
|
||||
|
||||
Boolean.define_own_property(
|
||||
'prototype', {
|
||||
'value': BooleanPrototype,
|
||||
'enumerable': False,
|
||||
'writable': False,
|
||||
'configurable': False
|
||||
})
|
||||
Reference in New Issue
Block a user