1 /* Cycript - Optimizing JavaScript Compiler/Runtime
2 * Copyright (C) 2009-2013 Jay Freeman (saurik)
5 /* GNU General Public License, Version 3 {{{ */
7 * Cycript is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published
9 * by the Free Software Foundation, either version 3 of the License,
10 * or (at your option) any later version.
12 * Cycript is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with Cycript. If not, see <http://www.gnu.org/licenses/>.
22 #ifndef CYCRIPT_DRIVER_HPP
23 #define CYCRIPT_DRIVER_HPP
31 #include "location.hh"
49 bool AtImplementation;
65 std::string filename_;
69 cy::location location_;
73 typedef std::vector<Error> Errors;
81 CYExpression *context_;
83 Context(CYExpression *context) :
88 typedef std::vector<CYWord *> Words;
92 typedef std::vector<Context> Contexts;
95 CYExpression *context_;
107 void ScannerDestroy();
110 CYDriver(std::istream &data, const std::string &filename = "");
113 Condition GetCondition();
114 void SetCondition(Condition condition);
116 void PushCondition(Condition condition);
119 void Warning(const cy::location &location, const char *message);
122 #endif/*CYCRIPT_DRIVER_HPP*/