Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
3answers
431 views

How do I access a constant in Perl whose name is contained in a variable?

I have a set of constants declared in Perl: use constant C1 => 111; use constant C2 => 222; .. use constant C9 => 999; my $which_constant = "C2"; How do I construct a Perl ...
3
votes
1answer
203 views

Symbol-table: deleting entries question

Why do I get the values from "$n" and "$m" after deleting the respective symbol-table-entries? #!/usr/bin/env perl use warnings; use 5.012; package Foo; our $n = 10; our $m = 20; delete ...
2
votes
3answers
52 views

Symbol Table Design and Implementation in Ruby

I am building a lexical analyzer in Ruby and am about to start gathering and storing symbols in the symbol table. My main question about the design of the symbol and as to whether it should be static ...
2
votes
1answer
127 views

How to make a symbol table

We have as an assignment to make a compiler. We have already made the lexical and syntax analysis but we are stuck at generation of intermediate code. We realized that we have to implement a symbol ...
1
vote
1answer
120 views

Symbol Table scope in compilers for object oriented languages

I'm building up a Symbol Table for a compiler of a subset of C++. My question here is how to deal with the scope in objects. I mean, in a normal language such as Pascal we should create a Symbol ...
0
votes
1answer
489 views

GDB Objective-c debugging (no symbol table)

I have an executable and I am debugging it using gdb. This is my first time using gdb so bear with me please. I want to set a breakpoint at a function and I know the name of the function using class ...
0
votes
3answers
514 views

Symbol table and semantic analysis for compiler

I'm working on building a compiler (without using any tools -like lex or bison) for a C like language (a simpler one) and have gotten past the lexer and parser. I am not sure the way I am doing the ...
0
votes
1answer
183 views

Mangled symbol table in Objective-C when linking static C++ library

I have a class called options written in c++, here is the header info: class Options { public: string filename; string chunkDir; string outFilename; string inFilename; BOOL compress; BOOL ...
0
votes
2answers
152 views

How does an object access the symbol table for the current package?

How could I access the symbol table for the current package an object was instantiated in? For example, I have something like this: my $object = MyModule->new; # this looks in the current package, ...
-1
votes
2answers
49 views

the object oriented languages's compiler [closed]

hello I want to search about the difference between the compiler of an object-oriented and a no object -oriented one. for example in lexical analyser and parser and symbol table. thank you,please help ...