Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
A
arpeggio-gm
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
backend
arpeggio-gm
Commits
d2bf8ca0
Commit
d2bf8ca0
authored
Nov 07, 2013
by
Igor Dejanovic
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed typo
parent
646d9ca2
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
8 deletions
+8
-8
README.rst
README.rst
+4
-4
__init__.py
arpeggio/__init__.py
+1
-1
setup.py
setup.py
+3
-3
No files found.
README.rst
View file @
d2bf8ca0
Arpeggio - Pacrat parser interpreter
====================================
Arpeggio - Pac
k
rat parser interpreter
====================================
=
Arpeggio is parser interpreter based on PEG grammars implemented as recursive descent
parser with memoization (aka Pacrat parser).
parser with memoization (aka Pac
k
rat parser).
Arpeggio is part of research project whose main goal is building environment for DSL development.
The main domain of application is IDE for DSL development but it can be used for all
...
...
@@ -11,7 +11,7 @@ Some essential planed/done features are error reporting and error recovery as we
as access to the raw parse tree in order to support syntax highlighting and
other nice features of today's IDEs.
For more information on PEG and pacrat parsers see:
For more information on PEG and pac
k
rat parsers see:
* http://pdos.csail.mit.edu/~baford/packrat/
* http://pdos.csail.mit.edu/~baford/packrat/thesis/
* http://en.wikipedia.org/wiki/Parsing_expression_grammar
...
...
arpeggio/__init__.py
View file @
d2bf8ca0
...
...
@@ -6,7 +6,7 @@
# Copyright: (c) 2009 Igor R. Dejanović <igor DOT dejanovic AT gmail DOT com>
# License: MIT License
#
# This is implementation of pacrat parser interpreter based on PEG grammars.
# This is implementation of pac
k
rat parser interpreter based on PEG grammars.
# Parsers are defined using python language construction or PEG language.
#######################################################################
...
...
setup.py
View file @
d2bf8ca0
...
...
@@ -7,7 +7,7 @@
# Copyright: (c) 2009 Igor R. Dejanović <igor DOT dejanovic AT gmail DOT com>
# License: MIT License
#
# Arpeggio is implementation of pacrat parser interpreter based on PEG grammars.
# Arpeggio is implementation of pac
k
rat parser interpreter based on PEG grammars.
# Parsers are defined using python language construction or PEG language.
###############################################################################
...
...
@@ -18,7 +18,7 @@ from setuptools import setup
NAME
=
'Arpeggio'
VERSION
=
__version__
DESC
=
'Pacrat parser interpreter'
DESC
=
'Pac
k
rat parser interpreter'
AUTHOR
=
'Igor R. Dejanovic'
AUTHOR_EMAIL
=
'igor DOT dejanovic AT gmail DOT com'
LICENCE
=
'MIT'
...
...
@@ -35,7 +35,7 @@ setup(
license
=
LICENCE
,
url
=
URL
,
packages
=
[
"arpeggio"
],
keywords
=
"parser pacrat peg"
,
keywords
=
"parser pac
k
rat peg"
,
classifiers
=
[
'Development Status :: 3 - Alpha'
,
'Intended Audience :: Developers'
,
...
...
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