New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

ql.io-compiler

Package Overview
Dependencies
Maintainers
3
Versions
38
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ql.io-compiler - npm Package Compare versions

Comparing version 0.8.3 to 0.8.4

15

lib/compiler.js

@@ -86,3 +86,3 @@ /*

//dependsOn are the lines in try clause
divescope(line.tryClause, line);
divescope(line.dependsOn, line);
_.each(line.catchClause, function(mycatch, k){

@@ -134,3 +134,3 @@ divescope(mycatch.lines, line);

//dependsOn are the lines in try clause
divescope(line.tryClause, line);
divescope(line.dependsOn, line);
_.each(line.catchClause, function(mycatch, k){

@@ -251,2 +251,10 @@ divescope(mycatch.lines, line);

introspectObject(line.object, symbols, line.dependsOn, line);
if(line.udf && line.udf != 'require'){
_.each(line.args, function(arg){
dependency = symbols[arg.name];
if(dependency){
addDep(line, line.dependsOn, dependency, symbols);
}
});
}
break;

@@ -314,3 +322,4 @@ case 'return':

case 'try':
_.each(line.tryClause, function(tryline){
_.each(line.dependsOn, function(tryline){
addListener(tryline, line);
walk(tryline, symbols);

@@ -317,0 +326,0 @@ });

2

package.json
{
"author": "ql.io",
"name": "ql.io-compiler",
"version": "0.8.3",
"version": "0.8.4",
"repository": {

@@ -6,0 +6,0 @@ "type": "git",

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc