William R. Ward writes: > 1. Remember whether we are doing variable interpolation or if the user > actually spelled it out with '.' between each part of the string, and > give either "... in concatenation (.)" or "... in string interpolation" > as the warning, or Easy. a) Define 2 new opcodes concat_qq and joint_qq with proper descriptions. b) Put #define pp_concat_qq pp_concat #define pp_join_qq pp_join c) Make tokenizer produce these opcodes instead of OP_JOIN and OP_CONCAT. Basically, it is a 6-lines patch. IlyaThread Previous | Thread Next