1
0
Fork 0
mirror of https://github.com/rubyjs/therubyracer synced 2023-03-27 23:21:42 -04:00

remove obsolete enums

They are defined in C++ now
This commit is contained in:
Charles Lowell 2015-07-29 20:45:31 +03:00
parent 2e59b4ef4c
commit c53027c53a
2 changed files with 0 additions and 17 deletions

View file

@ -1,3 +1,2 @@
require 'v8/weak'
require 'v8/c/maybe'
require 'v8/c/property_attribute'

View file

@ -1,16 +0,0 @@
module V8
module C
module PropertyAttribute
None = 0
ReadOnly = 1 << 0
DontEnum = 1 << 1
DontDelete = 1 << 2
end
module AccessControl
DEFAULT = 0
ALL_CAN_READ = 1 << 0
ALL_CAN_WRITE = 1 << 1
PROHIBITS_OVERWRITING = 1 << 2
end
end
end