go to post Jiri Svoboda · Dec 12, 2016 I certainly miss functional programming features like closures, higher-order functions and lazy evaluation every time I come back to ObjectScript from other languages.Your code provides a nice example of implementing collection methods so we can simulate some FP constructs in COS. Thanks!Jiri
go to post Jiri Svoboda · Nov 10, 2016 I am implementing my own minimalistic test runner that runs all defined tests every time the class is compiled without any further interaction needed from the user. Test failures are currently being reported with reference to INT code where the error occurred, which means I have to backtrack every failure to the original code. It would be easier if I could reference directly the CLS file :)
go to post Jiri Svoboda · Nov 9, 2016 Perfect! Thank you Timothy.Don't you know by chance how can I get source line from CLS code location? $TEXT seems to work on INT code only.