Comparing version 1.0.0 to 1.0.1
const binaryExpressionReduction = require('./src/binaryExpressionReduction') | ||
const ifStatementRemoval = require('./src/ifStatementRemoval') | ||
const negationOperatorRemoval = require('./src/negationOperatorRemoval') | ||
module.exports = { | ||
binaryExpressionReduction, | ||
ifStatementRemoval | ||
ifStatementRemoval, | ||
negationOperatorRemoval | ||
} |
{ | ||
"name": "astoptech", | ||
"version": "1.0.0", | ||
"version": "1.0.1", | ||
"description": "abstract syntax tree optimization techniques", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
const AbstractSyntaxTree = require('abstract-syntax-tree') | ||
const binaryExpressionReduction = require('./binaryExpressionReduction') | ||
const { binaryExpressionReduction } = require('..') | ||
const assert = require('assert') | ||
@@ -4,0 +4,0 @@ |
const AbstractSyntaxTree = require('abstract-syntax-tree') | ||
const ifStatementRemoval = require('./ifStatementRemoval') | ||
const { ifStatementRemoval } = require('..') | ||
const assert = require('assert') | ||
@@ -4,0 +4,0 @@ |
const AbstractSyntaxTree = require('abstract-syntax-tree') | ||
const negationOperatorRemoval = require('./negationOperatorRemoval') | ||
const { negationOperatorRemoval } = require('..') | ||
const assert = require('assert') | ||
@@ -4,0 +4,0 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
15288
190