| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
| |
for consistency
|
|
|
|
| |
no point in having identical overloads
|
|
|
|
|
|
|
|
|
| |
* factor out skipWhitespace
* remove streams dependency
(cssparser could never stream without blocking the event loop, so we
were just passing a StringStream in all cases, which made the whole
streaming pointless.)
|
|
|
|
|
|
| |
* separate params with ; (semicolon) instead of , (colon)
* reduce screaming snake case use
* wrap long lines
|
| |
|
| |
|
|
|
|
|
|
|
|
| |
We did were not using it as a unicode value anywhere, it was just
making our life harder.
If we ever need unicode delimiter tokens, we can re-introduce them
as a different token type.
|
|
|
|
|
|
|
|
|
|
| |
* ips -> io/
* loader related stuff -> loader/
* tempfile -> extern/
* buffer, forkserver -> server/
* lineedit, window -> display/
* cell -> types/
* opt -> types/
|
|
|
|
|
|
| |
* remove unused function isAlphaAscii
* swap pushHex for less casting
* remove == overload for char/rune (we did not really use it anyway)
|
|
|
|
| |
Not isAscii means we cannot convert to char. Oops.
|
| |
|
| |
|
|
|
|
| |
This fixes interpretation of "@media (min/max-width: 1234px)".
|
| |
|
| |
|
|
|
|
| |
It was slightly outdated and in many places incorrect.
|
|
|
|
| |
Nim can't really differentiate between them, unfortunately.
|
| |
|
| |
|
|
|