dcodeIO / Preprocessor.js

A JavaScript source file preprocessor in pure JavaScript, e.g. to build different versions of a library.
http://dcode.io
Apache License 2.0
72 stars 19 forks source link

invalid multiple elifs #9

Open parantail opened 10 years ago

parantail commented 10 years ago

code below prints "2==3".

// #if 1==2 console.log("1==2"); // #elif 2==3 console.log("2==3"); // #elif 3==3 console.log("3==3"); // #endif