This uses fparsec to parse locale files of hte form Id = text {arg:type} = newline = newlne For use with localization.
1 people like thisPosted: 11 years ago by devshorts
Untyped version of toml parser. The lines of code was reduced 173 to 45. It's based on some implementations in other languages (https://github.com/mojombo/toml#implementations). I was surprised that even a parser written in Objctive-c was simpler than mine (http://fssnip.net/jd). Then I read some others code and found that removing types which describes toml values simplifies the implementation. The code may seem little crazy, but I'm fine :)
0 people like thisPosted: 11 years ago by nagat01
Based on Uncle Bob's State Machine Compiler for Clean Code video series, parser implemented with FParsec, see https://github.com/unclebob/CC_SMC for the Java implementation.
8 people like thisPosted: 9 years ago by Phillip Trelford
Attempt to reproduce caseInsensitiveString from http://stackoverflow.com/a/12938883/17049
2 people like thisPosted: 9 years ago by Gauthier Segay
FParsec parser and Windows Forms viewer for minimal Turtle DSL.
3 people like thisPosted: 10 years ago by Phillip Trelford
Not working attempt to do a recursive left associative parser
2 people like thisPosted: 7 years ago by Arno den Uijl
Small Basic abstract syntax tree, parser and interpreter. Supports Small Basic's keywords and arithmetic, logical and comparison operators.
8 people like thisPosted: 6 years ago by Phillip Trelford
Simple prototype C# AST and parser using the FParsec parser combinator library. Parses a subset of C# 1.1 constructs.
8 people like thisPosted: 4 years ago by Phillip Trelford
Parser for Tom's Obvious, Minimal Language (https://github.com/mojombo/toml).
5 people like thisPosted: 11 years ago by nagat01
Minimal Logo implementation using FParsec with support for procedures.
8 people like thisPosted: 10 years ago by Phillip Trelford
Based on Uncle Bob's State Machine Compiler for Clean Code video series, parser implemented with FParsec, see https://github.com/unclebob/CC_SMC for Uncle Bob's Java implementation.
7 people like thisPosted: 9 years ago by Phillip Trelford
HttpListener + FParsec + Pattern Matching = Simple REST Endpoints
3 people like thisPosted: 9 years ago by Ted Cackowski Jr
Generic Parser Generator for F# values using TypeShape and FParsec. Supports recursive types.
4 people like thisPosted: 7 years ago by Eirik Tsarpalis
Parsers a minimal expression tree allowing for functions of the form "func(arg1,arg2,...)->{body}"
5 people like thisPosted: 7 years ago by devshorts
Like FParsec's pint32, but accepts only optionally-signed base-10 input
1 people like thisPosted: 5 years ago by Mark Laws