summaryrefslogtreecommitdiff
path: root/src/strings/literal.py
diff options
context:
space:
mode:
authorBen Longbons <b.r.longbons@gmail.com>2014-08-13 14:55:49 -0700
committerBen Longbons <b.r.longbons@gmail.com>2014-08-27 11:29:45 -0700
commit9951ad78c80e144c166a7d476cad7ffdf84332a9 (patch)
tree9f5498a9a3c23b62dc928288e72081e99f958f46 /src/strings/literal.py
parent749fec734c4583153fb2dbc80f1d21db2c2ab457 (diff)
downloadtmwa-9951ad78c80e144c166a7d476cad7ffdf84332a9.tar.gz
tmwa-9951ad78c80e144c166a7d476cad7ffdf84332a9.tar.bz2
tmwa-9951ad78c80e144c166a7d476cad7ffdf84332a9.tar.xz
tmwa-9951ad78c80e144c166a7d476cad7ffdf84332a9.zip
Debug debugging
Diffstat (limited to 'src/strings/literal.py')
-rw-r--r--src/strings/literal.py23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/strings/literal.py b/src/strings/literal.py
new file mode 100644
index 0000000..5031ff9
--- /dev/null
+++ b/src/strings/literal.py
@@ -0,0 +1,23 @@
+class LString(object):
+ __slots__ = ('_value')
+ name = 'tmwa::strings::LString'
+ enabled = True
+
+ def __init__(self, value):
+ self._value = value
+
+ def to_string(self):
+ v = self._value
+ b = v['_b']['_ptr']
+ e = v['_e']['_ptr']
+ d = e - b
+ return b.lazy_string(length=d)
+
+ test_extra = '''
+ using tmwa::operator "" _s;
+ '''
+
+ tests = [
+ ('""_s', '""'),
+ ('"Hello, World!"_s', '"Hello, World!"'),
+ ]