summaryrefslogtreecommitdiff
path: root/src/parse/parse.c
Commit message (Expand)AuthorAgeFilesLines
* Fix assertion failure when EOF is encountered in block-content.John Mark Bell2009-01-241-6/+23
* Fix handling of EOF in property values John Mark Bell2009-01-221-0/+6
* Test data for EOF in strange places.John Mark Bell2009-01-221-2/+14
* Intern zero-length data, too. Otherwise, we'll explode later on. John Mark Bell2009-01-191-2/+1
* Retain pointer to dictionary entries so we don't have to rediscover it later.John Mark Bell2008-12-011-110/+95
* Simplify decision as to whether to intern token data by inserting markers int...John Mark Bell2008-12-011-22/+7
* Divorce css_string from whatever gets stored in lpu hashes.John Mark Bell2008-12-011-3/+4
* Make getToken reduce consecutive whitespace tokens to a single whitespace token.John Mark Bell2008-11-301-9/+19
* Slightly clearer code. Marginally faster, too.John Mark Bell2008-11-301-42/+52
* Use parserutils_hash instead of parserutils_dict.John Mark Bell2008-11-301-9/+9
* Commentary on which tokens actually need string data interning.John Mark Bell2008-11-301-0/+12
* css_string is now the same as a parserutils_dict_entry. This allows us to use...John Mark Bell2008-11-271-98/+88
* Don't intern strings for CSS_TOKEN_S tokens. This is pointless, as all we car...John Mark Bell2008-11-271-1/+5
* Port libcss to new lpu API.John Mark Bell2008-11-091-72/+85
* Flag hideous todo thanks to CSSOMJohn Mark Bell2008-08-051-0/+3
* Make selector token vector be associated with the ruleset, rather than having...John Mark Bell2008-08-051-33/+25
* Beginnings of a mechanism to intern known strings and compare pointers effect...John Mark Bell2008-08-041-0/+25
* For tokens where there's a possibility of case differences requiring case ins...John Mark Bell2008-08-041-89/+136
* Change API of event callback to return css_error (this is more useful than bool)John Mark Bell2008-08-041-2/+3
* Only intern strings when we get a token from the lexer. Strings in tokens tha...John Mark Bell2008-08-011-14/+16
* Stub out a CSS 2.1 stage 2 parser.John Mark Bell2008-08-011-7/+3
* Allow silencing of parser test driver.John Mark Bell2008-08-011-1/+2
* Silence debugJohn Mark Bell2008-08-011-1/+1
* EOF isn't a parse errorJohn Mark Bell2008-08-011-2/+0
* Fix handling of empty strings.John Mark Bell2008-08-011-28/+16
* Fix at-rule processing.John Mark Bell2008-07-311-7/+5
* Something approximating recovery from malformed at-rules.John Mark Bell2008-07-311-6/+141
* Improve recovery from malformed declarationsJohn Mark Bell2008-07-311-69/+195
* Generate and emit eventsJohn Mark Bell2008-07-301-0/+82
* Implement error recovery for malformed declarations.John Mark Bell2008-07-301-12/+176
* Implement the first-stage parser.John Mark Bell2008-07-301-0/+1671