Tagged Questions
0
votes
1answer
21 views
init_declarator is a non-unique reference Antlr?
I am starting my symbol table, still new to it but facing some errors given by antlr in reference to my init_declarator rule. Any tips please
declaration
: declaration_specifiers ...
3
votes
2answers
430 views
Scala - URL with Query String Parser and Builder DSL
In Scala how do I build up a URL with query string parameters programmatically?
Also how can I parse a String containing a URL with query string parameters into a structure that allows me to edit the ...
0
votes
1answer
83 views
Xtext runtime compilation
I'm trying to understand Xtext and to find out if it fits my needs. I'm looking for a tool which allows me to create a DSL which can be compiled and evaluated in my application during execution.
...
1
vote
2answers
206 views
ANTLR java test file can't create object of tree grammar
I am creating a parser using ANTLR 3.x that targets java. I have written both parser grammar (for creating Abstract Syntax Tree, AST) and Tree Grammar (for performing operations on AST). Finally, to ...
10
votes
2answers
390 views
Drop-in, portable parsing
I see umpteen posts a day about "how to do X with regexen". And the best response to most of them seems like it would honestly be, "Why are you trying to drive a screw with a hammer?" But regexen are ...
4
votes
6answers
193 views
Right tool for translating a DSL into SQL?
I have a domain specific language that can be translated to SQL. Must I write my own lexer, parser, and code generator, or are there tools that could help me?
0
votes
1answer
162 views
Scala sentences parsing using parser-combinators
How to effectively parse (without too much of code cluttering) statements like below?
Keywords/separators are placed within [].
Manager, Delhi [for] The Company Pvt Ltd. [from] Jan, 2009 [to] Jan, ...
0
votes
3answers
101 views
How to parse text and be forgiving of white space looking for specific functions or patterns in .NET?
I wanted to find out some best practice methods how to parse text blocks looking for function-like text and be forgiving of white space within the text without having to do something like configure ...
3
votes
1answer
94 views
Adding embedded scripting to a PHP page [closed]
I have a class like this:
class Person {
function __construct($name) {
$this->name = $name;
}
function show() {
echo $this->name;
}
}
On my PHP page, I'd like ...
1
vote
2answers
426 views
How to strip C++ style single line comments (`// …`)
For a small DSL I'm writing I'm looking for a regex to match a comment string at the end of the like the // syntax of C++.
The simple case:
someVariable = 12345; // assignment
Is trivial to match ...
4
votes
1answer
244 views
Translating a declarative DSL into nested function calls
I have a python library which builds special iterators (a behavior tree) out of nested function calls. While the API has a fairly nice and light-weight syntax (due to it being python), it could really ...
1
vote
1answer
192 views
How does an interpreter use a DSL?
I'm using an interpreter for my domain specific language rather than a compiler (despite the performance). I'm struggling to understand some of the concepts though:
Suppose I have a DSL (in XML ...
1
vote
1answer
129 views
Access Associating Methods with Node in Treetop
With the grammar defined as below, why I keep get error while try to access the val method of nodes created by rule key?
The error message is
(eval):168:in `val': undefined local variable or method ...
3
votes
6answers
851 views
Better solution than lex/yacc for parsing a DSL in C?
One of my programs accepts a commands (like kill foo) at runtime. Think of it as a little domain-specific language. Here are a few examples:
kill
kill client
exit
But also, chained commands are ...
1
vote
3answers
708 views
Ruby blocks with method_missing
Note, this is a follow up to my question here.
I'm trying to parse the following Tcl code:
foo bar {
biz buzz
}
In Tcl, foo is the method name, bar is the argument, and the rest is a "block" to ...
0
votes
2answers
218 views
Use Ruby to parse a Tcl DSL
I would like to be able to parse some Tcl code where arguments are not surrounded by strings.
Consider this tcl code:
proc foo {name} {
puts "Foo --> $name"
}
foo bar
For those ...
4
votes
2answers
304 views
Are there any javascript frameworks for parsing/auto-completing a domain specific language?
I have a grammar for a domain specific language, and I need to create a javascript code editor for that language. Are there any tools that would allow me to generate
a) a javascript incremental parser
...
1
vote
3answers
846 views
Code parser for own DSL in C# [closed]
I'm looking for something like flex/bison that works with C# code. I want to be able to provide some language descriptors and a parser should be generated.
1
vote
1answer
705 views
scala dsl parser: rep, opt and regexps
Learning how to use scala DSL:s and quite a few examples work nice.
However I get stuck on a very simple thing:
I'm parsing a language, which has '--' as comment until end of line.
A single line ...
3
votes
4answers
526 views
How can fractional number expressions be parsed using pyparsing?
We've just started to kick the tires pyparsing and like it so far, but we've been unable to get it to help us parse fractional number strings to turn them into numeric data types.
For example, if a ...
9
votes
4answers
2k views
What is a good parser generator for php?
I need to parse a small 'mini language' which users can type on my site. I was wondering what the counterparts of lex and jacc or antlr are for the world of php.
3
votes
5answers
902 views
Partially parse C++ for a domain-specific language
I would like to create a domain specific language as an augmented-C++ language. I will need mostly two types of contructs:
Top-level constructs for specialized types or declarations
In-code ...
1
vote
3answers
498 views
Good grammar for date data type for recursive descent parser LL(1)
I'm building a custom expression parser and evaluator for production environment to provide a limited DSL to the users. The parser itself as the DSL, need to be simple. The parser is going to be built ...
6
votes
6answers
1k views
Coding a parser for a domain specific language in Java
We want to design a simple domain specific language for writing test scripts to automatically test a XML-based interface of one of our applications. A sample test would be:
Get an input XML file ...
5
votes
3answers
842 views
Building a “Semi-Natural Language” DSL in Ruby
I'm interested in building a DSL in Ruby for use in parsing microblog updates. Specifically, I thought that I could translate text into a Ruby string in the same way as the Rails gem allows ...
0
votes
1answer
174 views
Parsing Documents with a DSL
I'm trying to come up with a way to go through about a million documents which are formal documents (for arguments sake, they are Thesis documents). They are not all standardized but close enough. ...
1
vote
1answer
127 views
Stop and continue while evaluation an expression tree
At the office, we've applied simple Domain Specific Languages (DSLs) to several problem domains we encountered.
Basically, we parse (lex/yacc) the custom script into an expression tree. Every node ...
2
votes
3answers
652 views
Haskell equivalent of Python's “Construct”
Construct is a DSL implemented in Python used to describe data structures (binary and textual). Once you have the data structure described, construct can parse and build it for you. Which is good ...
0
votes
2answers
306 views
Parsing and evaluating given conditions
What I'm trying to do this is writing a simple parser for the following case in .NET
( [PART3]function1() AND [PART4]function7() ) OR [PART2]function90()
[PART] indicates the evaluation location, ...
9
votes
8answers
572 views
Learning More About Parsing
I have been programming since 1999 for work and fun. I want to learn new things, and lately I've been focused on parsing, as a large part of my job is reading, integrating and analyzing data. I also ...
0
votes
1answer
212 views
Formula in a database row - Java
Either this requirement is weird or i should be confusing myself too much
I have a rule table with 30 columns. Every row from a feed file is compared against some or all conditions based on the type ...
6
votes
5answers
483 views
Composable Grammars
There are so many programming languages which support the inclusion of mini-languages. PHP is embedded within HTML. XML can be embedded within JavaScript. Linq can be embedded within C#. Regular ...
0
votes
5answers
1k views
Tools to build a DSL in .NET
I'm getting teased more and more into developing DSLs. I've developed a tiny one with F# using fslex and fsyacc but the error messages are inaccurate (I also can't find a way to generate better ones, ...
3
votes
1answer
1k views
PHP text parsing and / or make your own language?
Been Googling around without finding much at all, so does anyone know of a class or library that helps you parse any sort of language, like a Domain Specific Language (I'm creating one, so I'm ...
6
votes
4answers
2k views
Writing a simple parser
I need to write a simple parser to a sort of Domain Specific Language.
It needs to have basic arithmatics with proper operators evaluation order and a syntax to call functions of the underlying ...
7
votes
9answers
5k views
Which Java oriented lexer parser for simple project (ANTLR, DIY, etc)
I am working on a small text editor project and want to add basic syntax highlighting for a couple of languages (Java, XML..just to name a few). As a learning experience I wanted to add one of the ...
5
votes
5answers
445 views
Why are parsing tools needed for DSLs?
Couldn't a DSL be as simple as an API and therefore not need a parser? Or am I misunderstanding what a domain specific language really is? I thought it referred to any organized set of rules for ...
0
votes
2answers
492 views
is SFig language syntax efficient and clear (and better than Spring-Framework's XML DSL)?
ADDENDUM EDIT:
Have not accepted an answer to this as
there has not been any feedback from
experienced Spring Framework
developers.
I've been working on a replacement DSL to use for ...
6
votes
6answers
3k views
What would the best tool to create a natural DSL in Java?
A couple of days ago, I read a blog entry (http://ayende.com/Blog/archive/2008/09/08/Implementing-generic-natural-language-DSL.aspx) where the author discuss the idea of a generic natural language DSL ...
