comparison graal/com.oracle.truffle.codegen.processor/src/com/oracle/truffle/codegen/processor/Log.java @ 7502:6343a09b2ec1

Codegen operation generation is inferred from the node type hierarchy.
author Christian Humer <christian.humer@gmail.com>
date Fri, 18 Jan 2013 13:28:12 +0100
parents a748e4d44694
children 5e3d1a68664e
comparison
equal deleted inserted replaced
7497:0f8c6dbf68be 7502:6343a09b2ec1
49 49
50 public void error(Element element, String format, Object... args) { 50 public void error(Element element, String format, Object... args) {
51 message(Kind.ERROR, element, null, null, format, args); 51 message(Kind.ERROR, element, null, null, format, args);
52 } 52 }
53 53
54 public void error(String format, Object... args) {
55 message(Kind.ERROR, null, null, null, format, args);
56 }
57
54 public void error(Element element, AnnotationMirror mirror, String format, Object... args) { 58 public void error(Element element, AnnotationMirror mirror, String format, Object... args) {
55 message(Kind.ERROR, element, mirror, null, format, args); 59 message(Kind.ERROR, element, mirror, null, format, args);
56 } 60 }
57 61
58 public void error(Element element, AnnotationMirror mirror, AnnotationValue value, String format, Object... args) { 62 public void error(Element element, AnnotationMirror mirror, AnnotationValue value, String format, Object... args) {