Revision 2c7ee956fd829624cacfdbde43d74ee8d3bb5e82 authored by Alex Lam S.L on 06 May 2017, 15:18:55 UTC, committed by GitHub on 06 May 2017, 15:18:55 UTC
Determine if variables with non-constant values can escape and be modified.

fixes #1865
1 parent ecf3563
Raw File
appveyor.yml
environment:
  matrix:
  - nodejs_version: "0.10"
  - nodejs_version: "0.12"
  - nodejs_version: "4.0"
  - nodejs_version: "6.0"

matrix:
  fast_finish: true

platform:
  - x86
  - x64

install:
  - ps: Install-Product node $env:nodejs_version $env:platform
  - npm install

test_script:
  - node --version
  - npm --version
  - npm test

build: off
back to top