forked from Shinmera/CLSS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.lisp
More file actions
48 lines (41 loc) · 927 Bytes
/
Copy pathpackage.lisp
File metadata and controls
48 lines (41 loc) · 927 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
(in-package #:cl)
(defpackage #:CLSS
(:nicknames #:org.shirakumo.clss)
(:use #:cl #:plump)
(:shadow #:read-name #:read-attribute #:read-attribute-value)
;; engine.lisp
(:export
#:pseudo-selector
#:remove-pseudo-selector
#:define-pseudo-selector
#:pseudo-selector-not-available
#:name
#:undefined-pseudo-selector
#:name
#:selector-malformed
#:selector
#:css-escape
#:css-unescape
#:match-constraint
#:match-matcher
#:match-pair
#:match-group
#:match-selector
#:select
#:ordered-select
#:match-group-backwards
#:node-matches-p)
;; parser.lisp
(:export
#:parse-selector)
;; selector.lisp
(:export
#:make-selector
#:make-clss-matcher
#:make-any-constraint
#:make-tag-constraint
#:make-type-constraint
#:make-id-constraint
#:make-class-constraint
#:make-attribute-constraint
#:make-pseudo-constraint))