vehre / aspa_cscc

Convert ASP pages to "pure" html/JS/PHP pages. Based on ASPA with conversion of client side VBscript to Javascript
Other
5 stars 1 forks source link

Type coercion in addition #26

Open jhiswin opened 10 years ago

jhiswin commented 10 years ago

VBScript: "0" + "1" = 1 "0" + 1 = 1 "0" & 1 = "01"

Solution: Implement add(a,b), concat(a,b) and change emitted code to use function calls instead of operators.