Skip to content

Commit

Permalink
Merge pull request #26 from ettic-team/wip
Browse files Browse the repository at this point in the history
Performance improvement and fixed an issue with object assignation.
  • Loading branch information
HoLyVieR authored May 24, 2019
2 parents f97e891 + 18804b7 commit 5c1c666
Show file tree
Hide file tree
Showing 9 changed files with 1,121 additions and 910 deletions.
4 changes: 3 additions & 1 deletion classes/object-function-call.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
/// class ObjectFunctionCall

var MemberExpression = require("./member-expression");

function ObjectFunctionCall(members, args) {
this.members = new MemberExpression(members);
this.arguments = args;
Expand Down Expand Up @@ -33,4 +35,4 @@ ObjectFunctionCall.prototype.equals = function (val) {
return good;
};

module.exports = ObjectFunctionCall;
module.exports = ObjectFunctionCall;
5 changes: 5 additions & 0 deletions constant.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
module.exports = {
CONST_SEPARATOR_ID : "&&&",
PLACEHOLDER_VARIABLE : "@{VAR}"
};

Loading

0 comments on commit 5c1c666

Please sign in to comment.