diff graal/com.oracle.truffle.dsl.processor/src/com/oracle/truffle/dsl/processor/model/Template.java @ 18761:a665483c3881

Truffle-DSL: new node layout implementation.
author Christian Humer <christian.humer@gmail.com>
date Mon, 29 Dec 2014 23:38:54 +0100
parents 23415229349b
children 941761f6b736
line wrap: on
line diff
--- a/graal/com.oracle.truffle.dsl.processor/src/com/oracle/truffle/dsl/processor/model/Template.java	Mon Dec 29 23:38:50 2014 +0100
+++ b/graal/com.oracle.truffle.dsl.processor/src/com/oracle/truffle/dsl/processor/model/Template.java	Mon Dec 29 23:38:54 2014 +0100
@@ -33,13 +33,11 @@
 
     private final ProcessorContext context;
     private final TypeElement templateType;
-    private final String templateMethodName;
     private final AnnotationMirror annotation;
 
-    public Template(ProcessorContext context, TypeElement templateType, String templateMethodName, AnnotationMirror annotation) {
+    public Template(ProcessorContext context, TypeElement templateType, AnnotationMirror annotation) {
         this.context = context;
         this.templateType = templateType;
-        this.templateMethodName = templateMethodName;
         this.annotation = annotation;
     }
 
@@ -64,10 +62,6 @@
         return Collections.emptyList();
     }
 
-    public String getTemplateMethodName() {
-        return templateMethodName;
-    }
-
     public TypeElement getTemplateType() {
         return templateType;
     }