mirror of
https://github.com/flynx/actions.js.git
synced 2025-10-28 09:50:10 +00:00
migrated to new object.js
Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
This commit is contained in:
parent
7025746aa9
commit
fd15b37cd3
@ -17,7 +17,7 @@ var args2array = function(a){ return [].slice.call(a) }
|
||||
|
||||
var ASIS =
|
||||
module.ASIS =
|
||||
object.makeConstructor('ASIS', {
|
||||
object.Constructor('ASIS', {
|
||||
__init__: function(obj){ this.value = obj },
|
||||
})
|
||||
|
||||
@ -481,7 +481,7 @@ function(txt){
|
||||
}
|
||||
|
||||
parseStringAction.Identifier =
|
||||
object.makeConstructor(
|
||||
object.Constructor(
|
||||
'Identifier',
|
||||
{
|
||||
__init__: function(value){
|
||||
@ -490,7 +490,7 @@ object.makeConstructor(
|
||||
valueOf: function(){ return this.value },
|
||||
})
|
||||
parseStringAction.Argument =
|
||||
object.makeConstructor(
|
||||
object.Constructor(
|
||||
'Argument',
|
||||
{
|
||||
__init__: function(value){
|
||||
@ -2232,7 +2232,7 @@ module.MetaActions = {
|
||||
|
||||
var ActionSet =
|
||||
module.ActionSet =
|
||||
object.makeConstructor('ActionSet', MetaActions)
|
||||
object.Constructor('ActionSet', MetaActions)
|
||||
|
||||
|
||||
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "ig-actions",
|
||||
"version": "3.22.2",
|
||||
"version": "3.23.0",
|
||||
"description": "",
|
||||
"main": "actions.js",
|
||||
"scripts": {
|
||||
@ -23,6 +23,6 @@
|
||||
},
|
||||
"homepage": "https://github.com/flynx/actions.js#readme",
|
||||
"dependencies": {
|
||||
"ig-object": "^1.0.7"
|
||||
"ig-object": "^2.0.0"
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user