summary refs log tree commit diff stats
path: root/tests/vm/tstring_openarray.nim
Commit message (Collapse)AuthorAgeFilesLines
* Fix operations on string as openarray in VM. (#6257)Parashurama2017-09-151-0/+34
* fix openarray.len for string as openArray in VM. * fix openarray[idx] for string as openArray in VM. * fix openarray[idx]=val for string as openArray in VM. * add tests for passing string as openArray in VM. * fix issue with NimNode.len NimNode.len was also returning len for string literals. also fix logic bug in if/elif chain.