The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
31 views

ANTLR4 token image concatenation with comments in the mix

I'm trying to write an ANTLR4 lexer for some language. I've got a working one, but I'm not entirely satisfied with it. keyword "my:little:uri" + /* my comment here */ ':it:is' // nasty comment + ...
1
vote
2answers
73 views

OCaml: new_line equivalent before 3.11

I'm trying to compile Libra toolkit on a machine running Ubuntu Hardy with OCaml 3.10, I can't upgrade the OS nor update OCaml, and I don't know anything about OCaml. There is only one line that gives ...
0
votes
1answer
35 views

Approach for Qt Parsing of Bencode

I am creating a simple Qt Bencode parser as an exercise to acquaint myself with the QString class. My current approach creates a Bencode object with behaves like a scanner and parses by incrementally ...
0
votes
1answer
25 views

dk.brics.automaton gets into infinite looping when given regex “a.b”?

I am wondering what metacharacters does dk.brics.automaton support. Does it even not support . operator? When I give a.b to it, it gets into infinite loop until Err: OutOfMemory. Is there any ...
0
votes
1answer
45 views

Ocaml Parsing a list

Hi guys I would like to parse "[a;b;c;d;e;f;g]" as "a::b::c::d::e::f::g::[]" In my part of my parser I have listOps: | combOps COLONCOLON listOps { Bin($1,Cons,$3) } | combOps SEMI listOps ...
5
votes
1answer
137 views

Are there any off-the-shelf solutions for lexical analysis in Haskell that allow for a run-time dynamic lexicon?

I'm working on a small Haskell project that needs to be able to lex a very small subset of strictly formed English in to tokens for semantic parsing. It's a very naïve natural language interface to a ...
1
vote
1answer
126 views

lexical analysis of data structure of different delimiters

So I'm making a lexer and a parser to parse one data format to another (partly as an exercise), and I have a question: Let's say we have 3 different data types, and these data types are identified by ...
2
votes
1answer
95 views

Pyparsing sequence of repeating pattern

yesterday I've posted a similar question to this one. Python Regex Named Groups This work's pretty nice for simple things. After some researching I've read about the pyparsing library which seems to ...
2
votes
1answer
116 views

Parse a string by Lexing.from_string

I have implemented this example, and it works well. Now, I want to read from a string instead of reading from stdin, so I change the calc.ml: let _ = try let lexbuf = Lexing.from_string "1+3" ...
0
votes
3answers
187 views

What are the advantages/disadvantages of using ANTLR, JavaCC or JFlex over StringTokenizer and equivalents? [closed]

I am currently looking at implementing the language shown here in Java. The presentation is a little long, but it is essentially a DSL for creating dynamic speech. Example: rule ExampleRule { ...
5
votes
1answer
157 views

<|> doesn’t work with Parsec

I’m trying to parse C++ code. Therefor, I need a context-sensitive lexer. In C++, >> is either one or two tokens (>> or > >), depending on the context. To make it even more complex, ...
1
vote
1answer
145 views

ANTLR best way to include meta-data in lexing/parsing (custom objects, kind of annotation)

I plan to include text metadata (like bold, font-size, etc.) in the process of parsing to achieve better recognition. For instance, I have a given structure, where a word on its own line word/r/n ...
1
vote
1answer
48 views

Can a lexer rule be applied in only one parser rule?

So the issue we're having with ANTLR is that we have a grammar that's parsing something like this: Hello, my name is bob. bob offset: 5 Keep in mind that the "bob." in the first line is dynamic, ...
2
votes
1answer
337 views

Haskell Parsec - error messages are less helpful while using custom tokens

I'm working on seperating lexing and parsing stages of a parser. After some tests, I realized error messages are less helpful when I'm using some tokens other than Parsec's Char tokens. Here are some ...
0
votes
1answer
85 views

A space is needed to let line_terminator be recognized

In my lexer.mll I have declared EOS as follows: let line_feed = '\n' (* %x200A *) let carriage_return = '\r' (* %x200D *) let line_terminator = line_feed | carriage_return | carriage_return line_feed ...
5
votes
5answers
202 views

Simplify regular expression for time literals (like “10h50m”)

I am writing lexer rules for a custom description language using pyLR1 which shall include time literals like for example: 10h30m # meaning 10 hours + 30 minutes 5m30s # meaning 5 minutes + ...
2
votes
1answer
276 views

Haskell Alex - regex matches wrong string?

I'm trying to write lexer for an indentation-based grammar and I'm having trouble matching the indentation. Here's my code: { module Lexer ( main ) where import System.IO.Unsafe } %wrapper ...
1
vote
1answer
60 views

Combining parsers when lexing an SGMLish document in Scala

I'm new to lexing and parsing in entirety beyond small cases. With that caveat given, my problem is that I'm trying to parse a JSP like dialect in Scala. I am lexing the char stream and when I get ...
2
votes
4answers
208 views

Resources for Lexing Python

As an educational exercise, I've set out to write a Python lexer in Python. Eventually, I'd like to implement a simple subset of Python that can run itself, so I want this lexer to be written in a ...
0
votes
2answers
254 views

Can ANTLR return Lines of Code when lexing?

I am trying use ANTLR to analyse a large set of code using full Java grammar. Since ANTLR needs to open all the source files and scan them, I am wondering if it can also return lines of code. I ...
1
vote
2answers
437 views

Recursive Descent vs Lex/Parse?

I think I understand (roughly) how recursive descent parsers (e.g. Scala's Parser Combinators) work: You parse the input string with one parser, and that parser calls other, smaller parsers for each ...
1
vote
0answers
121 views

Implementing a customizable Lexer class in Python

I want to implement a customizable and extendable lexer-class. My idea 2 different types of handlers: Character-set handlers Function handlers When a character is read, it is pushed through all ...
0
votes
2answers
141 views

How to get Coco/R parser to not be greedy

My ATG file defines a code block as Codeblock = "<#" {anychar} "#>" When the Coco generated parser comes across a block like this: <# a=5; print "Hello world!"; #> The token ...
4
votes
1answer
178 views

Why parser-generators instead of just configurable-parsers?

The title sums it up. Presumably anything that can be done with source-code-generating parser-generators (which essentially hard-code the grammar-to-be-parsed into the program) can be done with a ...
1
vote
1answer
101 views

HOP::Lexer with overlapping tokens

I'm using HOP::Lexer to scan BlitzMax module source code to fetch some data from it. One particular piece of data I'm currently interested in is a module description. Currently I'm searching for a ...
4
votes
2answers
341 views

How to capture a string without quote characters

I'm trying to capture quoted strings without the quotes. I have this terminal %token <string> STRING and this production constant: | QUOTE STRING QUOTE { String($2) } along with these ...
-1
votes
1answer
127 views

tilde accent marks alex

I'm building a compiler in Haskell. I have problems parsing characters with tilde accent marks. I'm using alex 2.3.3. I can't find a solution. Please help. Cheers, SM.
5
votes
4answers
2k views

PHP Lexer and Parser Generator?

I know question Lex and Yacc in PHP was asked before but 1 year ago. Is there any new mature PHP parser generator now ? My searches drove me to the following ones, what do you think about them, any ...
2
votes
1answer
196 views

Split shell-like syntax in Haskell?

How can I split a string in shell-style syntax in Haskell? The equivalent in Python is shlex.split. >>> shlex.split('''/nosuchconf "/this doesn't exist either" "yep"''') ['/nosuchconf', ...
3
votes
1answer
175 views

Profiling Regex Lexer

I've created a router in PHP which takes a DSL (based on the Rails 3 route) and converts it to Regex. It has optional segments (denoted by (nested) parenthesis). The following is the current lexing ...
1
vote
0answers
215 views

Adding alternate syntax to clang

I ran across the SPECS alternate grammar for C++, and while I'm not sure I like some of the more gratuitous syntax changes they made (changing pointers from * to ^, for instance), it turned me on to ...
2
votes
6answers
293 views

T-SQL language specification and lexing rules

I'm thinking about writing a templating tool for generating T-SQL code, which will include delimited sections like below; SELECT ~~idcolumn~~ FROM ~~table~~ WHERE ~~table~~.flag = 1 ...
5
votes
2answers
198 views

gppg/gplex equivalent in D?

When I was working in C#, I found the gppg and gplex parser/lexer generators to be perfect for my needs. I'm wondering if there's something similar for the D programming language (i.e. a utility that, ...
0
votes
1answer
128 views

FsLex - Differ between 2 strings

I've a couple of tokens: PNAME and ENAME - both are strings. Now I want to setup 2 rules in my lexer, in order to match those tokens. The first rule (PNAME) should match when the string consist of ...
2
votes
4answers
198 views

Is this the job of the lexer?

Let's say I was lexing a ruby method definition: def print_greeting(greeting = "hi") end Is it the lexer's job to maintain state and emit relevant tokens, or should it be relatively dumb? ...
1
vote
0answers
257 views

Switching between Configuration languages in ScintillaNet?

We're trying to implement an editor for a mix between javascript and HTML based on ScintillaNet. The javascript code is embedded in between <SCRIPT> </SCRIPT> tags... What i'd like to do ...
0
votes
1answer
157 views

Lexing space seperated words in ANTLR3 where some words are keywords

I am working on a project that involves transforming part of speech tagged text into an ANTLR3 AST with phrases as nodes of the AST. The input to ANTLR looks like: DT-THE The NN dog VBD sat IN-ON on ...
4
votes
3answers
917 views

Lexing and Parsing Utilities

I'm looking for lexical analysis and parser-generating utilities that are not Flex or Bison. Requirements: Parser is specified using a context-free LL(*) or GLR grammar. I would also consider PEGs. ...
4
votes
1answer
892 views

Practical difference between parser rules and lexer rules in ANTLR?

I understand the theory behind separating parser rules and lexer rules in theory, but what are the practical differences between these two statements in ANTLR: my_rule: ... ; MY_RULE: ... ; Do ...
0
votes
3answers
151 views

Java KeyEvent & Syntax Highlighting

I'm writing a syntax highlighting text editor in Java and I've run into a bit of a problem as to what I should do as opposed to what I want to do. Basically the KeyEvent class provides me with a bit ...
0
votes
1answer
163 views

Howto use JRuby's org.jruby.lexer.yacc.RubyYaccLexer

I'm using ripper to doing ruby-code lexing in mri-1.9., I would like to do the same thing in JRuby, i noticed there is this org.jruby.lexer.yacc.RubyYaccLexer used in ...
4
votes
1answer
422 views

Return multiple tokens in ocamllex

Is there any way to return multiple tokens in OCamlLex? I'm trying to write a lexer and parser for an indentation based language, and I would like my lexer to return multiple DEDENT tokens when it ...
2
votes
1answer
206 views

Recognize Identifiers in Chinese characters by using Lex/Yacc

How can I use Lex/Yacc to recognize identifiers in Chinese characters? Thanks for help.
3
votes
3answers
662 views

Best way to implement a meta language compiling down to PHP

I've been working on the specifikation / kitchensink for a meta language that can compile down to PHP for some time now. Now I want to begin building the thing. Before I have implemented tiny DSL's ...
0
votes
1answer
404 views

How to write a text transformer?

Suppose I have a text that I can easily parse. It consists of text and special identifiers. After parsing I get a list of tokens that correspond to text and special identifiers in the text. The ...
1
vote
3answers
193 views

How to evaluate a matched number later in a regex? - Lexing FORTRAN 'H' edit descriptor with Ply

I am using Ply to interpret a FORTRAN format string. I am having trouble writing a regex to match the 'H' edit descriptor which is of the form xHccccc ... where x specifies the number of characters ...
1
vote
3answers
497 views

Java Scanner with empty delimiter

I'd like to parse some text using an hand-written descending parser. I used Scanner with the following delimiter : "\\s*". Unfortunately, the fact that this pattern matches an empty String seems to ...
3
votes
1answer
2k views

How to get ANTLR to output hierarchical ASTs?

I have a Lua grammar, (minor modifications to get it to output for C#, just namespace directives and a couple of option changes) and when I run it on some sample input, it gives me back a tree with a ...
0
votes
1answer
91 views

How to exclude more than one character in rule?

I'm trying to write a string matching rule in ANTLRWorks, and i need to match either escaped quotes or any non quote character. I can match escaped quotes but I'm having trouble with the other part: ...
0
votes
2answers
198 views

How do i add parens to this rule?

I have a left-recursive rule like the following: EXPRESSION : EXPRESSION BINARYOP EXPRESSION | UNARYOP EXPRESSION | NUMBER; I need to add parens to it but i'm not sure how to make a left parens ...

1 2