Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
2answers
350 views

How do I implement forward references in a compiler?

I'm creating a compiler with Lex and YACC (actually GNU Flex and Bison). The language allows unlimited forward references to any symbol (like C#). The problem is that it's impossible to parse the ...
3
votes
6answers
4k views

What is forward reference in C?

What is forward reference in C with respect to pointers? Can I get an example?
2
votes
3answers
481 views

C#'s compiler design - forward referencing

In forward referencing language such as c#, how does the compiler handle this? What are the steps in which the compiler operate?
1
vote
1answer
203 views

How to handle forward references of XML IDREF with JAXB XmlAdapter during unmarshal?

Is it possible to handle forward references of XML IDREF elements in JAXB XmlAdapter during the unmarshal process? For example, I have the following XML complexType: <xs:complexType ...
1
vote
1answer
214 views

Forward reference extends over definition of value problem

i have some problem in scala to resolve implicit values, and i have the cryptic error message in netbeans : "error : Forward reference extends over definition of value ..." or in the scala ...
1
vote
3answers
3k views

Forward reference vs. forward declaration

Im a bit confused. What is the difference between forward declaration and forward reference? Forward declaration is, in my head, when you declare a function that isnt yet implemented, but is this ...