Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

14
votes
3answers
230 views

The good, the bad, and the ugly of lexical $_ in Perl 5.10+

Starting in Perl 5.10, it is now possible to lexically scope the context variable $_, either explicitly as my $_; or in a given / when construct. Has anyone found good uses of the lexical $_? Does ...
7
votes
2answers
143 views

Need an end of lexical scope action which can die normally

I need the ability to add actions to the end of a lexical block where the action might die. And I need the exception to be thrown normally and be able to be caught normally. Unfortunately, Perl ...
7
votes
5answers
2k views

Why does Programming Perl use local (not my) for filehandles?

When I read through Programming Perl, 2nd Edition, Page 51, something confuses me : sub newopen { my $path = shift; local *FH; #not my! open (FH, $path) || return undef; return ...
5
votes
1answer
147 views

Common Lisp scoping (dynamic vs lexical)

EDIT: I changed the example code after the first answer because I came up with a simple version that begs the same questions. I am currently learning Common Lisp's scoping properties. After I thought ...
5
votes
2answers
96 views

Is it possible to have hard real-time with lexical scope?

I was reading this paper about the funarg problem, which is really the problem of maintaining the environments of lexical closures. It's an old paper and I'm not sure if the author's conclusions still ...
5
votes
4answers
198 views

Why can't I use a Perl variable's value to access a lexical variable name?

Why does this print 42: $answer = 42; $variable = "answer"; print ${$variable} . "\n"; but this doesn't: my $answer = 42; my $variable = "answer"; print ${$variable} . "\n";
4
votes
5answers
117 views

Simple Method to a Simple Parser

I'm trying to create a simple parser and a small text file which follows the following structure: Variable_name = Value; VARIABLE_2 = SECOND_VALUE; Found methods that work, however, use ...
4
votes
2answers
694 views

Haskell: lexical error in string/character literal at character 'i'

I'm fairly new to Haskell programming and I'm having trouble understanding why I'm receiving this error in my code. My problem is as follows: Any positive integer i can be expressed as i = 2^n*k, ...
4
votes
2answers
305 views

Writing Compilers, Lexical Analysis? Help pls

I'm completely new to writing compilers. So I am currently starting the project (coded in Java), and before coding, I would like to know more about the lexical analysis part. I have researched on the ...
3
votes
2answers
85 views

Creating a simple lexical analyser in Java

I am creating a lexical analyser that must read a text input and output tokens for a basic 'created' language and should output a token when called. I would like it to distinguish between identifiers, ...
2
votes
1answer
34 views

lexically scoped variable retains value after being overwritten in a getJSON call

In the code at the end of this post, the variable pPrice is defined via $(addProduct).attr(attrProductPrice); and then set in a JSON call via $.getJSON(url, function(data) { console.log(data); pPrice ...
2
votes
1answer
353 views

Compiling a (flex/bison) parser with NDK

UPDATE I know now that parser.h should be generated by the make system from parser.y. The Android.mk file even has an entry like this: edify_src_files := \ lexer.l \ parser.y \ ...
2
votes
3answers
364 views

When should you use a package variable vs a lexical variable (and what's the difference)?

I'm looking at some older Perl code on Perl Monks to figure out programming with Win32::OLE and MS Word. Scattered throughout the code are variables with names like $MS::Word and the like, without a ...
1
vote
3answers
59 views

Javascript or Python: Newline after each sentence

I'm curious if there's a library for python OR javascript to tokenize sentences of a string of sentences and put new line at each sentence? IE: Lorem ipsum dolor sit amet, consectetur adipiscing ...
1
vote
1answer
151 views

Tokenization, Lexical Analysis, BNF, Context Free Grammar [closed]

I just want to ask if Tokenization is the same as Lexical analysis and if Backus Naur Form is the same as Context Free Grammar? I need to define and explain all four and give examples but It seems ...
1
vote
1answer
176 views

Lexical error: Encountered: “” (0), after : “”

I needed to start dealing with foreign characters, and in doing so, I think I royally screwed up a file's encoding. The error I'm getting is: Lexical error at line 1, column 8. Encountered: "" (0), ...
1
vote
1answer
264 views

How to combine Regexp and keywords in Scala parser combinators

I've seen two approaches to building parsers in Scala. The first is to extends from RegexParsers and define your won lexical patterns. The issue I see with this is that I don't really understand how ...
1
vote
1answer
337 views

Insert text in the input file in Lex (with C)

I'm trying to help a friend in a college assignment, but i kind of forgot a lot of C an Lex. The thing is, we are trying to parse a HTML and a correspondent CSS file and add to a tag it's style. Eg: ...
1
vote
3answers
261 views

Problems with pointers when building a Pascal compiler in C

Hello guys I'm facing some problems on the lexical analysis of my compiler I had declared the following pointer char *words[29]={ "program", "label", "integer", "word", ...
1
vote
3answers
355 views

Need abbreviation translation database

Is there such a thing? I'm looking to translate something like "mfg"=>"manufacturing" or . I figure that I'd need a database of mappings. However, I can't seem to find one. I'm don't know a lot ...
0
votes
0answers
20 views

Eli: Lexical Parser

I'm trying to use Eli as a lexical analyzer in order to parse a code into tokens. However, I have read parts of the documentation several times and I'm still having difficulty in understanding how it ...
0
votes
0answers
13 views

Lexical issue when compiling with the ChromiumTab Framework

I've been trying to design an application which uses the ChromiumTab framework. But however, every time I try to compile my test app that contains the ChromiumTab framework, it generates a Lexical ...
0
votes
1answer
135 views

Syntax Highlighting / Lexical analysis Algorithms

What is the general algorithm used by a syntax highlighter? I have implemented a simple approach using alternation in regex: STRING_PATTERN|COMMENT_PATTERN|KEYWORD_PATTERNS Since detecting ...
0
votes
2answers
2k views

iPhone xcode build fail - file unfound

I was downloading wikihow open source code for iPhone - to local xcode to run and view. https://github.com/keishi/wikihow-iphone-app After download, when i build and run it, it fail. Error as: 1- ...
0
votes
0answers
83 views

Token Storage Data Type

I'm writing a simple lexical analyzer. It is was easy to understand how do I recognize tokens. But I can't understand the way I should store them. One of the parts of my task is to use hash-fuctions. ...
0
votes
0answers
48 views

writing an interpreter

I was going to write a lexical analyzer for Java in Python. Is this even a possibility? Any ideas or suggestions would be greatly appreciated
0
votes
1answer
169 views

Words in a db - search via lexical dictionary (semantic similarity)

I'm implementing a small dictionary database where I'd like to do searches based on lexical/semantic similarity between them.. For example, beer has "sister words" such as soda, lemonade, wine, ...
0
votes
1answer
85 views

Xs:pattern interpretation in XML

How to interpret the following xml element? xs:pattern value="[ !-~]*"
0
votes
3answers
304 views

Can lexical analyzer stage check grammar rules during compilation?

sorry for such silly question, but I had argument with my pals about lexical analyze and we've decided to ask community. The question is: Whether the statement "int some_variable = ;" would be ...