index
:
askama
main
[no description]
git repository hosting
about
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
askama_parser
/
src
(
unfollow
)
Commit message (
Expand
)
Author
Files
Lines
2023-08-01
parser: add type for `Node::Let`
René Kijewski
2
-26
/
+34
2023-08-01
parser: add type for `Node::Raw`
René Kijewski
2
-29
/
+38
2023-08-01
parser: add type for `Node::Lit`
René Kijewski
3
-49
/
+54
2023-08-01
parser: add type for `Node::BlockDef`
René Kijewski
2
-30
/
+45
2023-08-01
parser: add type for `Node::Match`
René Kijewski
2
-36
/
+54
2023-08-01
parser: add type for `Node::Call`
René Kijewski
2
-20
/
+40
2023-08-01
parser: add type for `Node::Import`
René Kijewski
2
-17
/
+33
2023-08-01
parser: let `Macro` know its name
René Kijewski
1
-52
/
+53
2023-08-01
parser: add `Ast::nodes()` method
René Kijewski
1
-0
/
+4
2023-08-01
parser: impement `PartialEq` for `Ast`
René Kijewski
1
-0
/
+7
2023-08-01
parser: implement `Debug` for `Parsed`
René Kijewski
1
-1
/
+9
2023-08-01
parser: use `?`
René Kijewski
1
-5
/
+1
2023-08-01
parser: ensure correct drop order for `Parsed`
René Kijewski
1
-2
/
+3
2023-08-01
parser: remove panicking `From<&str> for Whitespace`
René Kijewski
1
-12
/
+5
2023-07-31
Fix parsing arrays
René Kijewski
2
-5
/
+90
2023-07-31
Fix parsing calls
René Kijewski
2
-4
/
+31
2023-07-31
parser: rename block to nodes
Dirkjan Ochtman
1
-12
/
+13
2023-07-31
parser: reorder items in node module
Dirkjan Ochtman
1
-50
/
+50
2023-07-31
parser: move Expr parser helpers into callers
Dirkjan Ochtman
1
-53
/
+54
2023-07-31
parser: move single expr parsers into Expr impl
Dirkjan Ochtman
1
-63
/
+63
2023-07-31
parser: move binary operator parsers into Expr impl
Dirkjan Ochtman
1
-71
/
+71
2023-07-31
parser: flatten top-level Expr interface
Dirkjan Ochtman
2
-36
/
+28
2023-07-31
parser: move suffix parsers into impl block
Dirkjan Ochtman
1
-53
/
+61
2023-07-31
parser: move cond parsers into type impls
Dirkjan Ochtman
1
-39
/
+43
2023-07-31
parser: move parser helpers into callers
Dirkjan Ochtman
1
-35
/
+35
2023-07-31
parser: move when parsers into impl block
Dirkjan Ochtman
1
-47
/
+50
2023-07-31
parser: define a struct for Match
Dirkjan Ochtman
1
-3
/
+22
2023-07-31
parser: define a struct for Cond
Dirkjan Ochtman
1
-3
/
+19
2023-07-31
parser: move node parsers into impl block
Dirkjan Ochtman
2
-410
/
+406
2023-07-31
parser: move Whitespace parser into method
Dirkjan Ochtman
1
-144
/
+142
2023-07-31
parser: move impl blocks closer to type definitions
Dirkjan Ochtman
1
-12
/
+12
2023-07-31
parser: simplify top-level parser match
Dirkjan Ochtman
1
-29
/
+24
2023-07-31
parser: add top-level Ast type
Dirkjan Ochtman
2
-115
/
+148
2023-07-31
parser: move nested_parenthesis() helper into node module
Dirkjan Ochtman
2
-51
/
+49
2023-07-31
parser: move helper functions into State impl
Dirkjan Ochtman
2
-93
/
+92
2023-07-31
parser: move trait impl closer to type definition
Dirkjan Ochtman
2
-11
/
+11
2023-07-31
parser: move single-use functions into caller
Dirkjan Ochtman
1
-13
/
+13
2023-07-31
Extract askama_parser crate
Dirkjan Ochtman
4
-0
/
+2055