/* Cycript - Optimizing JavaScript Compiler/Runtime
- * Copyright (C) 2009-2014 Jay Freeman (saurik)
+ * Copyright (C) 2009-2015 Jay Freeman (saurik)
*/
/* GNU Affero General Public License, Version 3 {{{ */
#include "Driver.hpp"
#include "Code.hpp"
-static void Skip(const char *data, size_t size, std::ostream &output, size_t &offset, cy::position ¤t, cy::position target) {
+static void Skip(const char *data, size_t size, std::ostream &output, size_t &offset, CYPosition ¤t, CYPosition target) {
while (current.line != target.line || current.column != target.column) {
_assert(offset != size);
char next(data[offset++]);
driver.commented_ = true;
size_t offset(0);
- cy::position current;
+ CYPosition current;
CYLocalPool pool;
YYSTYPE value;
- cy::location location;
+ CYLocation location;
while (cylex(&value, &location, driver.scanner_) != 0) {
CYColor color;