nitc :: MEntity :: cs_source_code
Uses cs_location to locate the source code.
cs_location
# Source code associated to this MEntity. # # Uses `cs_location` to locate the source code. fun cs_source_code: String do var tpl = new Buffer tpl.append "\n~~~\n" tpl.append location.text tpl.append "\n~~~\n" return tpl.write_to_string end