Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
mincss
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Taddeüs Kroes
mincss
Commits
9f135688
Commit
9f135688
authored
Jul 18, 2014
by
Taddeüs Kroes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added more CSS3 selectors
parent
70b28195
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
12 deletions
+5
-12
lexer.mll
lexer.mll
+2
-2
parser.mly
parser.mly
+3
-10
No files found.
lexer.mll
View file @
9f135688
...
@@ -80,8 +80,8 @@ rule token = parse
...
@@ -80,8 +80,8 @@ rule token = parse
| "
<!--
" { CDO }
| "
<!--
" { CDO }
| "
-->
" { CDC }
| "
-->
" { CDC }
| ['~'
'|']?
'=' as op { RELATION op }
| ['~'
'^' '$' '*' '|']?
'=' as op { RELATION op }
| ['>'
'~'] as c
{ COMBINATOR (Char.escaped c) }
| ['>'
'~'] as c
{ COMBINATOR (Char.escaped c) }
| mystring as s { STRING (strip_quotes s) }
| mystring as s { STRING (strip_quotes s) }
| badstring { raise (SyntaxError "
bad
string
") }
| badstring { raise (SyntaxError "
bad
string
") }
...
...
parser.mly
View file @
9f135688
...
@@ -228,18 +228,13 @@ simple_selector:
...
@@ -228,18 +228,13 @@ simple_selector:
{
elem
^
String
.
concat
""
addons
}
{
elem
^
String
.
concat
""
addons
}
|
addons
=
element_addon
+
|
addons
=
element_addon
+
{
String
.
concat
""
addons
}
{
String
.
concat
""
addons
}
%
inline
element_addon
:
%
inline
element_addon
:
a
=
HASH
|
a
=
cls
|
a
=
attrib
|
a
=
pseudo
{
a
}
|
a
=
HASH
|
a
=
cls
|
a
=
attrib
|
a
=
pseudo
{
a
}
element_name
:
element_name
:
|
tag
=
IDENT
{
tag
}
|
tag
=
IDENT
{
tag
}
|
STAR
{
"*"
}
|
STAR
{
"*"
}
cls
:
cls
:
|
DOT
name
=
IDENT
|
DOT
name
=
IDENT
{
"."
^
name
}
{
"."
^
name
}
attrib
:
attrib
:
|
LBRACK
S
*
left
=
IDENT
S
*
right
=
pair
(
RELATION
,
rel_value
)
?
RBRACK
|
LBRACK
S
*
left
=
IDENT
S
*
right
=
pair
(
RELATION
,
rel_value
)
?
RBRACK
{
let
right
=
match
right
with
None
->
""
|
Some
(
op
,
term
)
->
op
^
term
in
{
let
right
=
match
right
with
None
->
""
|
Some
(
op
,
term
)
->
op
^
term
in
...
@@ -247,13 +242,11 @@ attrib:
...
@@ -247,13 +242,11 @@ attrib:
%
inline
rel_value
:
%
inline
rel_value
:
|
S
*
id
=
IDENT
S
*
{
id
}
|
S
*
id
=
IDENT
S
*
{
id
}
|
S
*
s
=
STRING
S
*
{
"
\"
"
^
s
^
"
\"
"
}
|
S
*
s
=
STRING
S
*
{
"
\"
"
^
s
^
"
\"
"
}
pseudo
:
pseudo
:
|
COLON
id
=
IDENT
|
COLON
id
=
IDENT
{
":"
^
id
}
{
":"
^
id
}
|
COLON
f
=
FUNCTION
S
*
arg
=
terminated
(
IDENT
,
S
*
)
?
RPAREN
|
COLON
f
=
FUNCTION
args
=
wslist
(
COMMA
,
simple_selector
)
RPAREN
{
let
arg
=
match
arg
with
None
->
""
|
Some
id
->
id
in
{
":"
^
f
^
"("
^
String
.
concat
","
args
^
")"
}
":"
^
f
^
"("
^
arg
^
")"
}
declaration
:
declaration
:
|
name
=
property
S
*
COLON
S
*
value
=
expr
important
=
boption
(
ig2
(
IMPORTANT_SYM
,
S
*
))
|
name
=
property
S
*
COLON
S
*
value
=
expr
important
=
boption
(
ig2
(
IMPORTANT_SYM
,
S
*
))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment