/* 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 <string>
#include <vector>
-#include "location.hh"
-
+#include "Location.hpp"
#include "Parser.hpp"
enum CYState {
struct Error {
bool warning_;
- cy::location location_;
+ CYLocation location_;
std::string message_;
};
void PushCondition(Condition condition);
void PopCondition();
- void Warning(const cy::location &location, const char *message);
+ void Warning(const CYLocation &location, const char *message);
};
#endif/*CYCRIPT_DRIVER_HPP*/