-
as seen on Programmers
- Search for 'Programmers'
The title says "Circular Dependency", but it is not the correct wording, because to me the design seems solid.
However, consider the following scenario, where the blue parts are given from external partner, and orange is my own implementation. Also assume there is more then one ConcreteMain, but I…
>>> More
-
as seen on Server Fault
- Search for 'Server Fault'
I have 30 different RHEL 5.5 machines that will not update some 33 packages via Yum. Does anyone know why these packages will not install and how to correct this?
Yum clean all does not fix the issue, however skip broken will allow other updates to install but I am really after a way to clear this…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hello,
I'm using spring MVC with maven to develop a web application, but when i update dependencies maven i get this message:
5/6/10 10:09:50 AM CEST: Build errors for amundsen.web; org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute goal org.apache.maven.plugins:maven-resources-plugin:2…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
i want to use the addon vaadin Timeline, so i have to make "gwt-maven-plugin 3.1" as i know ,my pom.xml is the following :
<?xml version="1.0"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I am working with the classes in the System.Windows.Documents namespace, trying to write some generic code that will conditionally set the value of certain dependency properties, depending on whether these properties exist on a given class.
For example, the following method assigns an arbitrary value…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I am working on a code translation project with a sample ANTLR tree grammar as:
start: ^(PROGRAM declaration+) -> program_decl_tmpl();
declaration: class_decl | interface_decl;
class_decl: ^(CLASS ^(ID CLASS_IDENTIFIER))
-> class_decl_tmpl(cid={$CLASS_IDENTIFIER…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hi
I particularly like the transduce feature offered by agfl in their EP4IR
http://www.agfl.cs.ru.nl/EP4IR/english.html
The download page is here:
http://www.agfl.cs.ru.nl/download.html
Is there any way i can make use of this in a c# program? Do I need to convert classes to c#?
Thanks
:)
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hello,
I have been using ANTLR to generate a parser + tree grammar for a mark up language with Java target which works fine. Now I am trying to get the target in JavaScript to use it in my web browser.
However, I have not been able to locate any good documentation on how to go about doing this…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Here's a simple gunit test for a portion of my tree grammar which generates a flat
list of nodes:
objectOption walks objectOption:
<<one:"value">> -> (one "value")
Although you define a tree in ANTLR's rewrite syntax using a caret (i.e. ^(ROOT child...)), gunit matches trees…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hello all!
I have some questions about antlr3 with tree grammar in C target.
I have almost done my interpretor (functions, variables, boolean and math expressions ok) and i have kept the most difficult statements for the end (like if, switch, etc.)
1) I would like interpreting a simple loop statement:
repeat:…
>>> More