Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

algo-lang

Package Overview
Dependencies
Maintainers
1
Versions
24
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

algo-lang - npm Package Compare versions

Comparing version 1.1.2 to 1.1.3

4

build/visitors/executor.js

@@ -243,6 +243,8 @@ 'use strict';

ref.value = start;
if (!pour.desc && start >= end || pour.desc && start <= end) return;
const incr = pour.desc ? -1 : 1;
for (ref.value = start; !this.routine.returnValue && ref.value !== end; ref.value += incr) {
for (; !this.routine.returnValue && ref.value !== end; ref.value += incr) {
this.array(pour.loop);

@@ -249,0 +251,0 @@ }

@@ -253,2 +253,4 @@ import {EmptyVisitor} from './empty.js'

ref.value = start
if (!pour.desc && start >= end || pour.desc && start <= end)

@@ -258,3 +260,3 @@ return;

const incr = pour.desc ? -1 : 1
for (ref.value = start; !this.routine.returnValue && ref.value !== end; ref.value += incr) {
for (; !this.routine.returnValue && ref.value !== end; ref.value += incr) {
this.array(pour.loop)

@@ -261,0 +263,0 @@ }

{
"name": "algo-lang",
"version": "1.1.2",
"version": "1.1.3",
"description": "Algorithmic language interpreter (in French only for now)",

@@ -5,0 +5,0 @@ "homepage": "https://bitbucket.org/lsystems/algo-lang/overview",

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