summaryrefslogtreecommitdiff
path: root/src/parse
Commit message (Collapse)AuthorAgeFilesLines
* Update commentJohn Mark Bell2008-10-191-1/+8
| | | | svn path=/trunk/libcss/; revision=5604
* Fix parsing of combinators: the CSS 2.1 spec grammar contains inaccuracies ↵John Mark Bell2008-10-191-11/+35
| | | | | | | | -- combinators may be preceded by whitespace. Fix handling of whitespace after a selector list: again, the CSS 2.1 grammar isn't accurate here. svn path=/trunk/libcss/; revision=5603
* Finish selector list parsingJohn Mark Bell2008-10-191-75/+411
| | | | svn path=/trunk/libcss/; revision=5599
* More work on selector list parsingJohn Mark Bell2008-10-181-18/+99
| | | | svn path=/trunk/libcss/; revision=5597
* Minor changes.John Mark Bell2008-09-051-2/+0
| | | | svn path=/trunk/libcss/; revision=5255
* Turn internal representation outline into a header file.John Mark Bell2008-08-081-0/+1
| | | | svn path=/trunk/libcss/; revision=4964
* Flag hideous todo thanks to CSSOMJohn Mark Bell2008-08-051-0/+3
| | | | svn path=/trunk/libcss/; revision=4924
* s/handleSelector/handleSelectorList/John Mark Bell2008-08-051-3/+3
| | | | svn path=/trunk/libcss/; revision=4923
* Disable @media and @page -- I'd rather focus on non-nested blocks in the ↵John Mark Bell2008-08-051-0/+7
| | | | | | first instance. svn path=/trunk/libcss/; revision=4922
* Make selector token vector be associated with the ruleset, rather than ↵John Mark Bell2008-08-053-83/+97
| | | | | | | | | having its own event type. Store details about the current construct on the context stack. Document block-content, selector, and declaration stuff. svn path=/trunk/libcss/; revision=4921
* Something approximating @importJohn Mark Bell2008-08-041-4/+29
| | | | svn path=/trunk/libcss/; revision=4904
* Beginnings of a mechanism to intern known strings and compare pointers ↵John Mark Bell2008-08-043-13/+61
| | | | | | effectively. svn path=/trunk/libcss/; revision=4903
* For tokens where there's a possibility of case differences requiring case ↵John Mark Bell2008-08-041-89/+136
| | | | | | insensitive matching, intern lower cased versions of strings alongside the originals. svn path=/trunk/libcss/; revision=4902
* Handle @charsetJohn Mark Bell2008-08-041-1/+24
| | | | svn path=/trunk/libcss/; revision=4901
* Stub out at-rule handlingJohn Mark Bell2008-08-041-1/+46
| | | | svn path=/trunk/libcss/; revision=4899
* Change API of event callback to return css_error (this is more useful than bool)John Mark Bell2008-08-043-49/+159
| | | | | | Implement all the context-related event handlers in the stage 2 parser. svn path=/trunk/libcss/; revision=4898
* Only intern strings when we get a token from the lexer. Strings in tokens ↵John Mark Bell2008-08-011-14/+16
| | | | | | that have been pushed back have already been interned, so it's stupid to re-intern every time. This has required that the lexer permits its clients to modify the data members of the css_token object. That's fine, as it assumes nothing about them (they're basically just a window onto the internal lexer state, anyway). svn path=/trunk/libcss/; revision=4857
* More stub.John Mark Bell2008-08-011-3/+140
| | | | svn path=/trunk/libcss/; revision=4855
* Stub out a CSS 2.1 stage 2 parser.John Mark Bell2008-08-015-10/+128
| | | | | | Parser core doesn't need to know about css_stylesheet, so change its API. svn path=/trunk/libcss/; revision=4854
* Allow silencing of parser test driver.John Mark Bell2008-08-011-1/+2
| | | | svn path=/trunk/libcss/; revision=4852
* Silence debugJohn Mark Bell2008-08-011-1/+1
| | | | svn path=/trunk/libcss/; revision=4851
* EOF isn't a parse errorJohn Mark Bell2008-08-011-2/+0
| | | | svn path=/trunk/libcss/; revision=4850
* Fix handling of empty strings.John Mark Bell2008-08-011-28/+16
| | | | | | | | Parse errors in blocks are ignored -- it'll be up to the client to deal with this. Fix processing of malformed decl-list entries (e.g. foo: bar; !important;) Fix test driver to calculate remaining length correctly. svn path=/trunk/libcss/; revision=4849
* Fix at-rule processing.John Mark Bell2008-07-311-7/+5
| | | | | | Fix malformed selector input to actually result in a terminated block. svn path=/trunk/libcss/; revision=4848
* Something approximating recovery from malformed at-rules.John Mark Bell2008-07-311-6/+141
| | | | svn path=/trunk/libcss/; revision=4847
* Improve recovery from malformed declarationsJohn Mark Bell2008-07-311-69/+195
| | | | | | Implement recovery from malformed selectors svn path=/trunk/libcss/; revision=4846
* Generate and emit eventsJohn Mark Bell2008-07-302-0/+110
| | | | svn path=/trunk/libcss/; revision=4828
* Implement error recovery for malformed declarations.John Mark Bell2008-07-301-12/+176
| | | | svn path=/trunk/libcss/; revision=4826
* Implement the first-stage parser.John Mark Bell2008-07-303-0/+1765
Things missing: 1) Recovery after parse errors 2) Event emission (the locations of DEBUG_EVENTS are about right for this) 3) A second-stage parser 4) Any kind of testsuite svn path=/trunk/libcss/; revision=4825