diff options
author | Ivan Enderlin <ivan.enderlin@hoa-project.net> | 2015-05-29 14:50:47 +0200 |
---|---|---|
committer | Ivan Enderlin <ivan.enderlin@hoa-project.net> | 2015-05-29 14:50:47 +0200 |
commit | 23dad64d8b31ef59b15076d73b99b444e22e1e5c (patch) | |
tree | 4fd089228ffa6ac704c1c2b9a433311d1c5216f3 /Visitor | |
parent | 0fce3078006928700d7e65660d49f693dc4293d2 (diff) | |
download | Praspel-23dad64d8b31ef59b15076d73b99b444e22e1e5c.zip Praspel-23dad64d8b31ef59b15076d73b99b444e22e1e5c.tar.gz Praspel-23dad64d8b31ef59b15076d73b99b444e22e1e5c.tar.bz2 |
Move to `Hoa\Ustring`.
Diffstat (limited to 'Visitor')
-rw-r--r-- | Visitor/Interpreter.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Visitor/Interpreter.php b/Visitor/Interpreter.php index e12b20c..bc3940f 100644 --- a/Visitor/Interpreter.php +++ b/Visitor/Interpreter.php @@ -38,7 +38,7 @@ namespace Hoa\Praspel\Visitor; use Hoa\Praspel; use Hoa\Realdom; -use Hoa\String; +use Hoa\Ustring; use Hoa\Visitor; from('Hoa') @@ -573,13 +573,13 @@ class Interpreter implements Visitor\Visit return "\033[D"; case 'x': - return String::fromCode(hexdec($value)); + return Ustring::fromCode(hexdec($value)); case '\\': return $value[1]; default: - return String::fromCode(octdec($value)); + return Ustring::fromCode(octdec($value)); } case 'accepted': |