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
bbb79f6f
Commit
bbb79f6f
authored
Jul 14, 2014
by
Taddeüs Kroes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Rewrote lexer
parent
6ee79d6b
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
135 additions
and
112 deletions
+135
-112
lexer.mll
lexer.mll
+100
-54
parser.mly
parser.mly
+35
-58
No files found.
lexer.mll
View file @
bbb79f6f
{
{
open
Lexing
(* Tokenizer according to definition at
open
Parser
* http://www.w3.org/TR/CSS2/syndata.html#tokenization *)
open
Lexing
open
Parser
exception
SyntaxError
of
string
exception
SyntaxError
of
string
let
next_line
lexbuf
=
let
next_line
lexbuf
=
let
pos
=
lexbuf
.
lex_curr_p
in
let
pos
=
lexbuf
.
lex_curr_p
in
lexbuf
.
lex_curr_p
<-
{
lexbuf
.
lex_curr_p
<-
{
pos
with
pos_bol
=
lexbuf
.
lex_curr_pos
;
pos
with
pos_bol
=
lexbuf
.
lex_curr_pos
;
...
@@ -12,50 +14,94 @@ let next_line lexbuf =
...
@@ -12,50 +14,94 @@ let next_line lexbuf =
}
}
}
}
let
h
=
[
'
0
'
-
'
9
''
a'
-
'
f'
]
let
wc
=
'\r''\n'
|
[
'
'
'\t''\r''\n''\012'
]
let
nonascii
=
[
'\160'
-
'\255'
]
let
s
=
[
'
'
'\t''\r''\n''\012'
]
+
let
w
=
s
?
let
nl
=
'\n'
|
'\r''\n'
|
'\r'
|
'\012'
let
unicode
=
'\\'
h
(
h
(
h
(
h
(
h
(
h
)
?
)
?
)
?
)
?
)
?
wc
?
let
escape
=
unicode
|
'\\'
[
^
'\r''\n''\012'
'
0
'
-
'
9
''
a'
-
'
f'
]
let
nmstart
=
[
'
_''a'
-
'
z'
]
|
nonascii
|
escape
let
nmchar
=
[
'
_''a'
-
'
z''0'
-
'
9
''
-
'
]
|
nonascii
|
escape
let
string1
=
'
"'([^'
\n
''
\r
''
\012
''"
'
]
|
'\\'
nl
|
escape
)
*
'
"'
let string2 = '
\'
'([^'
\n
''
\r
''
\012
''
\'
'] | '
\\
'nl | escape)*'
\'
'
let mystring = string1 | string2
let badstring1 = '"
'
([
^
'\n''\r''\012'
'
"'] | '
\\
'nl | escape)*'
\\
'?
let badstring2 = '
\'
'([^'
\n
''
\r
''
\012
''
\'
'] | '
\\
'nl | escape)*'
\\
'?
let badstring = badstring1 | badstring2
let badcomment1 = '/''*'[^'*']*'*'+([^'/''*'][^'*']*'*'+)*
let badcomment2 = '/''*'[^'*']*('*'+[^'/''*'][^'*']*)*
let badcomment = badcomment1 | badcomment2
let baduri1 = "
url
(
"w(['!''#''$''%''&''*'-'['']'-'~'] | nonascii | escape)*w
let baduri2 = "
url
(
"w mystring w
let baduri3 = "
url
(
"w badstring
let baduri = baduri1 | baduri2 | baduri3
let comment = '/''*'[^'*']*'*'+([^'/''*'][^'*']*'*'+)'*''/'
let ident = '-'? nmstart nmchar*
let name = nmchar+
let num = ['0'-'9']+ | ['0'-'9']*'.'['0'-'9']+
let url = (['!''#''$''%''&''*''-''~'] | nonascii | escape)*
rule token = parse
rule token = parse
| s { S }
| comment (* ignore comments *)
| badcomment (* unclosed comment at EOF *)
| "
<!--
" { CDO }
| "
-->
" { CDC }
| "
~=
" { INCLUDES }
| "
|=
" { DASHMATCH }
| mystring { STRING }
| badstring { BAD_STRING }
| ident as id { IDENT id }
| '#' (name as name) { HASH name }
| "
@
import
" { IMPORT_SYM }
| "
@
page
" { PAGE_SYM }
| "
@
media
" { MEDIA_SYM }
| "
@
charset
" { CHARSET_SYM }
| '!' (w | comment)* "
important
" { IMPORTANT_SYM }
| (num as n) "
em
" { EMS (int_of_string n) }
| (num as n) "
ex
" { EXS (int_of_string n) }
| (num as n) "
px
" { LENGTH (int_of_string n, "
px
") }
| (num as n) "
cm
" { LENGTH (int_of_string n, "
cm
") }
| (num as n) "
mm
" { LENGTH (int_of_string n, "
mm
") }
| (num as n) "
in
" { LENGTH (int_of_string n, "
in
") }
| (num as n) "
pt
" { LENGTH (int_of_string n, "
pt
") }
| (num as n) "
pc
" { LENGTH (int_of_string n, "
pc
") }
| (num as n) "
deg
" { ANGLE (int_of_string n, "
deg
") }
| (num as n) "
rad
" { ANGLE (int_of_string n, "
rad
") }
| (num as n) "
grad
" { ANGLE (int_of_string n, "
grad
") }
| (num as n) "
ms
" { TIME (int_of_string n, "
ms
") }
| (num as n) "
s
" { TIME (int_of_string n, "
s
") }
| (num as n) "
hz
" { FREQ (int_of_string n, "
hz
") }
| (num as n) "
khz
" { FREQ (int_of_string n, "
khz
") }
| (num as n) "
%
" { PERCENTAGE (int_of_string n) }
| (num as n) (ident as dim) { DIMENSION (int_of_string n, dim) }
| num as n { NUMBER (int_of_string n) }
| "
url
(
" w (mystring as uri) w "
)
" { URI uri }
| "
url
(
" w (url as uri) w "
)
" { URI uri }
| baduri as uri { BAD_URI uri }
| (ident as fn) '(' { FUNCTION fn }
| '(' { LPAREN }
| '(' { LPAREN }
| ')' { RPAREN }
| ')' { RPAREN }
| '{' { LBRACE }
| '{' { LBRACE }
| '}' { RBRACE }
| '}' { RBRACE }
| '[' { LBRACK }
| ']' { RBRACK }
| ';' { SEMICOL }
| ';' { SEMICOL }
|
'
,
'
{
COMMA
}
| ':' { COLON }
| ':' { COLON }
|
"@media"
{
MEDIA
}
(*
|
"@import"
{
IMPORT
}
|
"@charset"
{
CHARSET
}
|
"@page"
{
PAGE
}
|
"@font-face"
{
FONTFACE
}
|
"@namespace"
{
NAMESPACE
}
|
"!important"
{
IMPORTANT
}
|
[
'
A'
-
'
Z''a'
-
'
z''0'
-
'
9
''
_''
-
''
#
'
'.'
]
+
as
id
{
ID
id
}
|
[
'.'
'
#
''
:
'
][
'
A'
-
'
Z''a'
-
'
z''_''
-
'
][
'
A'
-
'
Z''a'
-
'
z''0'
-
'
9
''
_''
-
'
'.'
'
#
''
:
'
]
*
as
id
{
SELECTOR
id
}
|
'\r'
|
'\n'
|
"
\r\n
"
{
next_line
lexbuf
;
token
lexbuf
}
|
[
'
'
'\t'
]
+
{
token
lexbuf
}
|
"/*"
{
comment
lexbuf
}
|
'
"' { str (Buffer.create 17) lexbuf }
| eof | '
\000
' { EOF }
| _ as chr { raise (SyntaxError ("
unexpected
char
:
" ^ Char.escaped chr)) }
(* Multi-line comments *)
and comment = parse
| '
\r
' | '
\n
' | "
\
r
\
n
" { next_line lexbuf; comment lexbuf }
| "
*/
" { token lexbuf }
| _ { comment lexbuf }
(* Strings *)
and str buf = parse
| '"
'
{
STRING
(
Buffer
.
contents
buf
)
}
|
'\\'
'
/
'
{
Buffer
.
add_char
buf
'
/
'
;
str
buf
lexbuf
}
|
'\\''\\'
{
Buffer
.
add_char
buf
'\\'
;
str
buf
lexbuf
}
|
'\\'
'
b'
{
Buffer
.
add_char
buf
'\b'
;
str
buf
lexbuf
}
|
'\\'
'
f'
{
Buffer
.
add_char
buf
'\012'
;
str
buf
lexbuf
}
|
'\\'
'
n'
{
Buffer
.
add_char
buf
'\n'
;
str
buf
lexbuf
}
|
'\\'
'
r'
{
Buffer
.
add_char
buf
'\r'
;
str
buf
lexbuf
}
|
'\\'
'
t'
{
Buffer
.
add_char
buf
'\t'
;
str
buf
lexbuf
}
|
[
^
'
"''
\\
']+ as s { Buffer.add_string buf s; str buf lexbuf }
| eof { raise (SyntaxError "
unterminated
string
") }
| _ as c { raise (SyntaxError ("
illegal
string
character
:
" ^ Char.escaped c)) }
| _ as c { raise (SyntaxError ("
illegal
string
character
:
" ^ Char.escaped c)) }
*)
parser.mly
View file @
bbb79f6f
...
@@ -6,10 +6,12 @@ let prop2str (name, value) = name ^ ":" ^ Stringify.value2str value
...
@@ -6,10 +6,12 @@ let prop2str (name, value) = name ^ ":" ^ Stringify.value2str value
%
}
%
}
(* Tokens *)
(* Tokens *)
%
token
LPAREN
RPAREN
LBRACE
RBRACE
SEMICOL
COMMA
COLON
%
token
S
CDO
CDC
INCLUDES
DASHMATCH
STRING
BAD_STRING
IMPORT_SYM
PAGE_SYM
%
token
MEDIA
IMPORT
CHARSET
PAGE
FONTFACE
NAMESPACE
%
token
MEDIA_SYM
CHARSET_SYM
IMPORTANT_SYM
%
token
IMPORTANT
EOF
%
token
LPAREN
RPAREN
LBRACE
RBRACE
LBRACK
RBRACK
SEMICOL
COLON
%
token
<
string
>
ID
STRING
SELECTOR
%
token
<
int
>
EMS
EXS
PERCENTAGE
NUMBER
%
token
<
int
*
string
>
LENGTH
ANGLE
TIME
FREQ
DIMENSION
%
token
<
string
>
IDENT
HASH
URI
BAD_URI
FUNCTION
(* Start symbol *)
(* Start symbol *)
%
type
<
Types
.
decl
list
>
stylesheet
%
type
<
Types
.
decl
list
>
stylesheet
...
@@ -18,68 +20,43 @@ let prop2str (name, value) = name ^ ":" ^ Stringify.value2str value
...
@@ -18,68 +20,43 @@ let prop2str (name, value) = name ^ ":" ^ Stringify.value2str value
%%
%%
(* Left-recursive list (use List.rev to obtain correctly ordered list) *)
(* Left-recursive list (use List.rev to obtain correctly ordered list) *)
(*
llist(x):
llist(x):
| { [] }
| { [] }
| tl=llist(x) hd=x { hd :: tl }
| tl=llist(x) hd=x { hd :: tl }
*)
separated_llist
(
sep
,
x
)
:
|
{
[]
}
|
tl
=
llist
(
x
)
sep
hd
=
x
{
hd
::
tl
}
stylesheet
:
stylesheet
:
|
decls
=
llist
(
decl
)
EOF
|
(
CDO
|
CDC
|
S
|
statement
)
*
{
List
.
rev
decls
}
selector
:
|
id
=
ID
{
[
id
]
}
|
id
=
SELECTOR
{
[
id
]
}
|
tl
=
selector
hd
=
ID
{
hd
::
tl
}
|
tl
=
selector
hd
=
SELECTOR
{
hd
::
tl
}
value
:
|
str
=
STRING
{
Str
str
}
|
lit
=
ID
{
Lit
lit
}
|
name
=
ID
LPAREN
arg
=
value
RPAREN
{
Fn
(
name
,
arg
)
}
|
IMPORTANT
{
Imp
}
prop
:
statement
:
|
name
=
ID
COLON
v
=
value
+
|
ruleset
{
(
name
,
match
v
with
[
hd
]
->
hd
|
_
->
Lst
v
)
}
|
at_rule
propline
:
at_rule
:
|
p
=
prop
SEMICOL
|
ATKEYWORD
S
*
any
*
(
block
|
SEMICOL
S
*
)
{
p
}
props
:
block
:
|
LBRACE
p
=
llist
(
propline
)
last
=
prop
?
RBRACE
|
LBRACE
S
*
(
any
|
block
|
ATKEYWORD
S
*
|
SEMICOL
S
*
)
*
RBRACE
S
*
{
List
.
rev
p
@
(
match
last
with
None
->
[]
|
Some
p
->
[
p
])
}
group
:
ruleset
:
|
s
=
separated_nonempty_list
(
COMMA
,
selector
)
p
=
props
|
selectors
=
any
+
LBRACE
S
*
declaration
?
(
SEMICOL
S
*
declaration
?
)
*
RBRACE
S
*
{
Group
(
List
.
rev
s
,
p
)
}
%
inline
media
:
declaration
:
|
m
=
ID
|
name
=
IDENT
S
*
COLON
S
*
value
=
value
{
m
}
{
Property
(
name
,
value
)
}
|
LPAREN
p
=
prop
RPAREN
{
"("
^
prop2str
p
^
")"
}
%
inline
stringopt
:
f
=
STRING
|
f
=
ID
{
f
}
value
:
|
(
any
|
block
|
ATKEYWORD
S
*
)
+
decl
:
|
g
=
group
any
:
{
g
}
|
(
IDENT
|
NUMBER
|
PERCENTAGE
|
DIMENSION
|
STRING
|
DELIM
|
URI
|
HASH
|
|
MEDIA
queries
=
separated_nonempty_list
(
COMMA
,
media
)
LBRACE
groups
=
llist
(
group
)
RBRACE
UNICODE
-
RANGE
|
INCLUDES
|
DASHMATCH
|
COLON
|
FUNCTION
S
*
(
any
|
unused
)
*
{
Media
(
queries
,
List
.
rev
groups
)
}
RPAREN
|
LPAREN
S
*
(
any
|
unused
)
*
RPAREN
|
LBRACK
S
*
(
any
|
unused
)
*
RBRACK
)
S
*
|
IMPORT
f
=
stringopt
q
=
separated_list
(
COMMA
,
ID
)
SEMICOL
{
Import
(
f
,
q
)
}
unused
:
|
CHARSET
c
=
stringopt
SEMICOL
|
block
{
Charset
c
}
|
ATKEYWORD
S
*
|
PAGE
query
=
ID
?
p
=
props
|
SEMICOL
S
*
{
Page
(
query
,
p
)
}
|
CDO
S
*
|
FONTFACE
p
=
props
|
CDC
S
*
{
Fontface
p
}
|
NAMESPACE
prefix
=
ID
?
uri
=
STRING
SEMICOL
{
Namespace
(
prefix
,
uri
)
}
%%
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