6 lines
88 B
JavaScript
6 lines
88 B
JavaScript
|
|
node.Call = function Call(name, args) {
|
|
this.name = name;
|
|
this.args = args;
|
|
};
|