summaryrefslogtreecommitdiff
path: root/Examples/test-suite/javascript/preproc_runme.js
blob: 167ca5ac1cfa0402f12635ca2f2fbb0a1c67b766 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
var preproc = require("preproc");

if (preproc.endif != 1)
  throw "RuntimeError";

if (preproc.define != 1)
  throw "RuntimeError";

if (preproc.defined != 1)
  throw "RuntimeError";

if (2*preproc.one != preproc.two)
  throw "RuntimeError";