0
votes
1answer
49 views
Eclipse JDT ASTVisitor - how to tell if a field is read or written in a method?
I am writing a Eclipse ASTVisitor. How to tell if a field is read or written in a method?
The idea provided was "You need to vist Assignment node. Field on the LHS is written, whi …
0
votes
1answer
61 views
How to store state on a node for a visitor pattern?
I have an architecture that uses the visitor pattern to implement a number of passes over a tree (an AST as it happens). In one of the passes I need to associate some data with a n …
0
votes
3answers
68 views
What’s the best pattern to handle a table row datastructure?
The Facts
I have the following datastructure consisting of a table and a list of attributes (simplified):
class Table {
List<Attribute> m_attributes;
}
abstract class …
1
vote
5answers
106 views
“Easiest” way to track unique visitors to a page, in real time?
I need to record in "real time" (perhaps no more than 5 minute delay?) how many unique visitors a given page on my website has had in a given time period. I seek an "easy" way to d …
2
votes
1answer
74 views
Visitor Pattern in Ruby, or just use a Block?
Hey there, I have read the few posts here on when/how to use the visitor pattern, and some articles/chapters on it, and it makes sense if you are traversing an AST and it is highly …
2
votes
3answers
194 views
Boost Graph Library and Visitors
I'm writing a library for manipulating bond graphs, and I'm using the Boost Graph Library to store the data for me. Unfortunately, I can't seem to figure out how to implement a pr …
0
votes
2answers
110 views
ASTVisitor in Eclipse
Hi,
I am learning how to do an ASTVisitor for a project, so I started using Eclipse, which has a comprehensive API for that.
I have downloaded the Packed Example Project from thi …
7
votes
3answers
475 views
Building own C# compiler using ANTLR: Compilation Unit
Hi,
// Create a scanner that reads from the input stream passed to us
CSLexer lexer = new CSLexer(new ANTLRFileStream(f));
tokens.TokenSource = lexer;
// Create a parser that re …
2
votes
5answers
56 views
How to make sure the visitor is unique
Say you have a pay-site with some online courses. And you want to make sure that one person doesn't just buy access, and then give the username and password to all his friends, so …
2
votes
1answer
131 views
Objective-C categories == visitor pattern?
Would you say that Objective-C categories are an implementation of the visitor design pattern?
1
vote
2answers
52 views
visitor pattern against conditionals?
I don't seem to find this in usage scenarios for the visitor pattern (or maybe I don't get it). It's also not hierarchical.
Let's use an authentication example. A UserAuthenticato …
4
votes
5answers
387 views
Alternative to the visitor pattern?
I am looking for an alternative to the visitor pattern. Let me just focus on a couple of pertinent aspects of the pattern, while skipping over unimportant details. I'll use a Shape …
2
votes
1answer
117 views
Visitor Design Pattern in OCaml
I am attempting to implement the Visitor Design Pattern using OCaml's OO constructs and type system and am running into problems upon instantiation of an Element.
class virtual [' …
2
votes
1answer
221 views
Java field type for a value of a generically recursive self-type?
Given a class hierarchy where the base class defines a recursive self-type:
abstract class A<T extends A<T>> { }
How can I declare another class (which should not be …
3
votes
4answers
369 views
Implementing a visitor counter
I am a newbie and developing a website using ASP .Net 2.0 with C# 2005. I would like to add a facility to count the no. of visitors to my website. I have collected the basic inform …
