Skip to content

Commit

Permalink
fix for #143
Browse files Browse the repository at this point in the history
  • Loading branch information
lukka committed Jul 4, 2024
1 parent 203ca41 commit f998306
Show file tree
Hide file tree
Showing 7 changed files with 24,894 additions and 9,186 deletions.
4 changes: 4 additions & 0 deletions dist/action.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
if (!yy.ast) {
yy.ast = _ast;
_ast.initialize();
}
16 changes: 15 additions & 1 deletion dist/all.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
]
},
{
"owner": "msvc",
"owner": "msvc-line",
"pattern": [
{
"regexp": "^(.*)\\((\\d+)\\)\\s*:\\s*(?:fatal\\s*)?(error|warning)\\s+(?:.*)?([\\d]{4}):(\\s+.*)$",
Expand All @@ -53,6 +53,20 @@
"message": 5
}
]
},
{
"owner": "msvc-linecol",
"pattern": [
{
"regexp": "^(.*)\\((\\d+),(\\d+)\\)\\s*:\\s*(?:fatal\\s*)?(error|warning)\\s+(?:.*)?([\\d]{4}):(\\s+.*)$",
"file": 1,
"line": 2,
"column": 3,
"code": 5,
"severity": 4,
"message": 6
}
]
}
]
}
3,756 changes: 3,756 additions & 0 deletions dist/esprima.js

Large diffs are not rendered by default.

30,058 changes: 20,923 additions & 9,135 deletions dist/index.js

Large diffs are not rendered by default.

34 changes: 34 additions & 0 deletions dist/module.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
var _ast = {

initialize: function() {
this._nodes = [];
this._node = {};
this._stash = [];
},

set: function(props) {
for (var k in props) this._node[k] = props[k];
return this._node;
},

node: function(obj) {
if (arguments.length) this._node = obj;
return this._node;
},

push: function() {
this._nodes.push(this._node);
this._node = {};
},

unshift: function() {
this._nodes.unshift(this._node);
this._node = {};
},

yield: function() {
var _nodes = this._nodes;
this.initialize();
return _nodes;
}
};
202 changes: 157 additions & 45 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,11 @@
"@actions/github": "6.0.0",
"@actions/glob": "0.4.0",
"@actions/io": "1.1.3",
"@lukka/action-lib": "3.9.4",
"@lukka/assets-lib": "3.9.4",
"@lukka/base-lib": "3.9.4",
"@lukka/base-util-lib": "3.9.4",
"@lukka/run-cmake-lib": "3.9.4",
"@lukka/action-lib": "4.1.3",
"@lukka/assets-lib": "4.1.3",
"@lukka/base-lib": "4.1.3",
"@lukka/base-util-lib": "4.1.3",
"@lukka/run-cmake-lib": "4.1.3",
"@types/follow-redirects": "1.14.3",
"@types/jest": "29.5.6",
"follow-redirects": "^1.15.6",
Expand Down

0 comments on commit f998306

Please sign in to comment.