The "Lexical" tag is used to denote a connection with words of a language, its grammar or the dictionary. Alternatively, it is also used in the context of "lexical scope," the context in which certain values are valid.
0
votes
1answer
74 views
What is the longest C line-of-code using unique ASCII characters? [closed]
This challenge gets to to some of the subtle aspects of the C language. My first stab at this follows.
int main(int argc, char *argv[]) {
int a,b,c,d,e,g,h,i;
int f[1];
double ...
-1
votes
1answer
89 views
Lexical or Preprocessor issue with Xcode 4.6.1
my App could work with Xcode 4.3.3 before. But when I want to make it for adhoc test by " Product -- Archive " with Xcode 4.6.1, following error appears: " three20UI.h, Lexical or Preprocessor issue, ...
0
votes
0answers
12 views
Lexical Parameters in OracleCommand
Is there a way to use lexical parameters in a OracleCommand?
What I am trying to do is set a comma delimited list in the where clause
example:
where column in (:LIST)
:LIST would contain something ...
4
votes
2answers
65 views
Does PHP have lexical scope in anonymous functions / closures?
I'm using PHP 5.4 and wondering if the anonymous functions I'm making have lexical scoping?
I.e. If I have a controller method:
protected function _pre() {
$this->require = new ...
-1
votes
3answers
133 views
c++ converting txt file data into double variables
Hi so I started to create a program to calculate a person's GPA and save that info for future reference. My problem is that I can't figure out how to read the numbers saved in the .txt file and then ...
0
votes
1answer
32 views
CSS Lexical Error
I was having trouble with how an image is displaying and so I ran it through the W3C CSS validator and I received this code. I tried to search around for what it might mean but couldn't find much ...
0
votes
1answer
73 views
How to change my .m file to a .mm file?
How can I change my .m file to a .mm file?
I'm getting the error: cassert file not found
I have researched and found that I need to change my files to .mm?
How can I do this?
0
votes
3answers
337 views
C++ parser generator
I'm writing my own scripting language and I need a software tool which generates C++ code for parsing my language. I need a lexical analyzer and a parser generator which generates C++ code. It would ...
3
votes
2answers
98 views
Why does “\9” give “9” while “\7” is empty?
I have read the lexical grammar of the String literals. I found out that both "\9" and "\7" are considered invalid string literals.
But why does alert("\9") give 9 while alert("\7") is empty (I ...
1
vote
2answers
144 views
Java Apache Jena SparQL query returns Lexical error when query is valid
I have the following SparQL query:
SELECT ?b ?c WHERE {
ont:http\:\/\/test.com\/test\#com.test.test.test.2.3.4 ?b ?c}
which returns the successfully returns the correct results in OpenRDF Workbench ...
0
votes
1answer
65 views
When generating a FlexLexer, how can you tell it to use w_char?
Is there a certain option to tell flex to generate a .cc file that uses a w_char and wistream instead of the standard wstream?
1
vote
2answers
70 views
Simulating Static Variables in Scheme
A function that returns how many times it has been called in Scheme would look like
(define count
(let ((P 0))
(lambda ()
(set! P (+ 1 P))
P)))
(list (count) (count) (count) ...
0
votes
1answer
100 views
JFlex regex vs keywords in lexical rules
What's the point in allowing the use of both keywords and regexes in the section covering lexical rules in a JFlex input file?
It seems
retrieve { action code}
...and
"retrieve" { action code }
...
0
votes
0answers
105 views
Flex-way of defining lexical analysis
I have a assignment to implement a lexical analyzer for a language that is a subset of ANSI C. The language is called MONGA (sorry, only in portuguese).
In this first part of the assignment we are ...
0
votes
1answer
99 views
PHP Tokenizer multiline issue
I am using token_get_all to develop a tool. I am stuck in a situation where I have following query in php code
$sql = "UPDATE `key_values` SET
`Value_Content` = '" . ...
2
votes
1answer
262 views
Lexical analyser with c, new line token
I have 4 rules
rule1: match variable
rule2: match Float
rule3: match Integer
rule4: [ \t] ; //skipping space, tabs
rule5: \n ;
now I want to have a rule for matching error, anything else that ...
0
votes
1answer
263 views
MIT Java WordNet Interface: Getting WordNet lexicographer classes or super-senses
I have a project where I need to get the lexical meaning of a word. I am thinking of using WordNet because it has its own lexicographer classes also called super-senses. I just downloaded MIT JWI and ...
0
votes
1answer
40 views
creating simple rule in flex
I need to make a rule in my lex file that will identify the start of a newline and a sequence of spaces I did this ^( )* but the compiler says it is wrong what is the wright way to define it?
0
votes
1answer
292 views
lexical analyzer output issue
this is my lexical analyzer code when I enter as an input the following :
/*This is an example */
program
var a,b:integer;
begin
a =2;
b =a+5;
write(a);
...
0
votes
1answer
391 views
beginner lexical analyzer in java
I am writing a lexical analyzer. I know it's super simple. It runs but whenever enter an input, the program treats it as invalid characters (even when they are supposed to be valid). What did I do ...
0
votes
2answers
128 views
Xcode 4 - renamed/deleted file, yet get 'file not found' error
I just used Xcode's refactoring tool to rename a core data class from Player to Person. After fixing about 100 errors resulting from using dot notation that Xcode missed in the rename, I got to the ...
0
votes
1answer
263 views
What regular expressions can I use in c++,using regex, to parse separators,operators,identifiers, and real numbers?
for(int k = 0 ; k < 5.25;k++)
{
cout<<"hello"<<endl;
}
return 0;
I'm writing a c++ program for lexical analysis on a simple text file containing
c++ code. ...
0
votes
1answer
60 views
How do I declare and set the value of a DateTime object in different lexical scopes?
I read on this question and answer, where you must create a new DateTime object if you need to modify (or shift) the time of the object, because DateTime is an immutable object type.
Why ...
6
votes
3answers
222 views
What is meant by proper closure here
This is a code lifted straight from Perl Cookbook:
@colors = qw(red blue green yellow orange purple violet);
for my $name (@colors) {
no strict 'refs';
*$name = sub { "<FONT ...
0
votes
2answers
2k views
Lexical or Preprocessor Issue error (UIKit/UIKit.h file not found)
I've read the other question in regards to lexical and preprocessor issues and I've tried to use what helped solve their problems. Unfortunately, none of those solutions have helped rectify the ...
1
vote
2answers
140 views
Converting double to string. Boost Libraries appear not to work, and sstream causes “SEG FAULT”
I have a simple problem, and I think I'm just doing something stupid which is causing a SEGFAULT.
I simply want to convert a double variable to a string, and then 'strcat()' them both together and ...
3
votes
2answers
48 views
Need help understanding (lexical) variable scope in Javascript
I have a .js file that I am executing with NodeJS. Here are the contents of my file:
var ctry = "America";
function outer(msg) {
console.log(msg + " " + ctry) ;
var ctry = "Canada" ;
}
...
2
votes
1answer
358 views
How to declare identifiers in flex/lex?
I want to create a CSS2.1 lexical scanner based on flex.
There is scanner flex implementation on the w3 org.
I tried to call
$ flex css2.1.flex
$ gcc lex.yy.c -lfl
but get errors:
css2.1.flex: In ...
1
vote
1answer
124 views
Can I change the sort sequence of a SOLR search at query time? Make SOLR use 52734 instead of 12345?
I have documents in an index which have a category attribute.
There are priorities assigned to each category, like so:
Category | Priority
1 | 1
2 | 2
3 | 3
4 ...
5
votes
1answer
150 views
What is the advantage of lexical addressing in Chapter 5 of SICP?
I am reading SICP now and don't really understand the necessity of lexical addressing described in 5.5.6 Lexical addressing of SICP.
Since it says
"Because our language is lexically scoped, the ...
1
vote
2answers
74 views
lexical elements of grammar
There is 4 lexical elements of grammar
G = (S, N, T, P)
Where G = Grammar, S = Start Symbol, N = Non-Terminals, T = Terminals, P = Production rules
I wanted to know if N is always equal with P ...
1
vote
2answers
281 views
Implementing a lexical analzyer
I have an assignment to implement a lexical analyzer for a language c--. We must translate the c-- code into a series of tokens that will be represented as integers internally, since it will be easier ...
0
votes
2answers
322 views
c++ function overload ambiguous
in c++
void foo(int i)
{ std::cout<<"int"<<std::endl; }
void foo(float i)
{ std::cout<<"float"<<std::endl; }
void foo(void *i)
{ std::cout<<"void ...
1
vote
2answers
85 views
about the number Literals lexical
alert(010),the result is 8. why?
i read the ecmascript 7.8.3 Numeric Literals.
According to the Numeric Literals Lexical,
010 is a invalid numeric literals.
-4
votes
1answer
95 views
Reading and Writing text doc in java
I am reading a text doc into a string.. Removing some words from the string. Now I again need to write that string to a file in the same format as it was present.. Please help !
I have tried this ...
2
votes
0answers
110 views
Adding positioned to Lexical/StdLexical in Scala
I'm creating a Lexer in the vein of StdLexical with a few changes in terms of behavior (but for the purposes of my question, a demonstration of how to add it to StdLexical would be fine). I'm trying ...
1
vote
0answers
111 views
Lexical Errors:misspelling of keywords
In the dragon book it is mentioned that
"Lexical errors include misspelling of identifiers,keywords,or operators"
I am a bit confused how will a lexical analyzer find a misspelling of keyword wont ...
3
votes
2answers
2k 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, ...
1
vote
3answers
124 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 ...
5
votes
1answer
573 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 ...
2
votes
1answer
91 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 ...
4
votes
5answers
248 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 ...
1
vote
1answer
622 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 ...
1
vote
1answer
440 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
2k 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), ...
5
votes
2answers
117 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 ...
0
votes
2answers
3k 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- ...
2
votes
1answer
894 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 \
...
4
votes
2answers
2k 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, ...
7
votes
2answers
197 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 ...




