Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | switch to sci notation for floats (except latex) | bnewbold | 2017-01-28 | 1 | -1/+1 |
| | |||||
* | parser: fix get_constant_vars() | bnewbold | 2017-01-16 | 1 | -3/+3 |
| | |||||
* | parser: show values and descriptions in-line | bnewbold | 2017-01-16 | 1 | -2/+10 |
| | |||||
* | parse out exponentiation | bnewbold | 2017-01-14 | 3 | -1/+29 |
| | |||||
* | parser: statically compile regex w/ lazy_static | bnewbold | 2017-01-07 | 2 | -4/+6 |
| | | | | As per regex library's documentation | ||||
* | call ::std::process::exit() directly | bnewbold | 2016-12-27 | 1 | -2/+1 |
| | |||||
* | parser: fix string_literals | bnewbold | 2016-12-26 | 2 | -1/+5 |
| | |||||
* | parser: refactor vec operations into hashset | bnewbold | 2016-12-26 | 2 | -46/+39 |
| | |||||
* | radically simplify scope of parsing | bnewbold | 2016-12-26 | 4 | -146/+6 |
| | | | | | | | | Parsing arbitrary files, packages, blocks, connectors, etc caused the compilation time for this parser to explode exponentially, and resulted in huge parser.rs and executable files. This commit rips out all those features. | ||||
* | parser: namespacing | bnewbold | 2016-12-25 | 4 | -6/+45 |
| | |||||
* | update TODOs | bnewbold | 2016-12-25 | 1 | -1/+4 |
| | |||||
* | parser: more progress | bnewbold | 2016-12-19 | 2 | -48/+70 |
| | |||||
* | parser: make strip comments a function | bnewbold | 2016-12-19 | 2 | -8/+11 |
| | |||||
* | parser: README + TODO tweaks | bnewbold | 2016-12-19 | 2 | -3/+9 |
| | |||||
* | parser: more models (not working) | bnewbold | 2016-12-19 | 2 | -1/+30 |
| | |||||
* | parser: more features | bnewbold | 2016-12-18 | 3 | -39/+74 |
| | |||||
* | parser: more weird examples | bnewbold | 2016-12-18 | 5 | -0/+49 |
| | |||||
* | TODO and move build.rs out of src | bnewbold | 2016-12-18 | 3 | -1/+5 |
| | |||||
* | manually/naively strip comments from raw .mo files | bnewbold | 2016-12-18 | 2 | -4/+13 |
| | |||||
* | parser: remove multi-line comment example | bnewbold | 2016-12-18 | 1 | -2/+1 |
| | |||||
* | parser: reserved keywords list (for ref) | bnewbold | 2016-12-18 | 1 | -0/+61 |
| | |||||
* | parser: add basic README | bnewbold | 2016-12-18 | 2 | -0/+19 |
| | |||||
* | catch parser up with AST; remove generated parser rust | bnewbold | 2016-12-18 | 3 | -24934/+101 |
| | | | | | | The size of the generated parser file has exploded (to, eg, 8+ MB). Because we need to generate this anyways on every compile, remove it from version control (with gitignore). | ||||
* | parser: booleans and arrays | bnewbold | 2016-12-18 | 2 | -1/+26 |
| | |||||
* | parser: example parses files, not just models | bnewbold | 2016-12-18 | 1 | -1/+1 |
| | |||||
* | parser: quantity field for component declaration | bnewbold | 2016-12-18 | 2 | -1/+2 |
| | |||||
* | higher-level modelica parsing AST structs | bnewbold | 2016-12-18 | 1 | -0/+50 |
| | |||||
* | parser: don't print expected if there aren't any | bnewbold | 2016-12-18 | 1 | -4/+12 |
| | |||||
* | parser: support for math functions (sin, exp, log, etc) | bnewbold | 2016-12-18 | 4 | -3040/+7265 |
| | |||||
* | parser: refactor components into clauses/decl | bnewbold | 2016-12-18 | 3 | -4380/+9237 |
| | |||||
* | modelica-parser tests TODO | bnewbold | 2016-12-17 | 1 | -0/+7 |
| | |||||
* | update/expand parser examples | bnewbold | 2016-12-17 | 11 | -0/+129 |
| | |||||
* | refactor modelica parser into separate crate | bnewbold | 2016-12-17 | 12 | -0/+16507 |