]> gerrit.simantics Code Review - simantics/platform.git/blob - compiler/elaboration/macros/MacroRule.java
Fixed multiple issues causing dangling references to discarded queries
[simantics/platform.git] / compiler / elaboration / macros / MacroRule.java
1 package org.simantics.scl.compiler.elaboration.macros;
2
3 import org.simantics.scl.compiler.elaboration.contexts.SimplificationContext;
4 import org.simantics.scl.compiler.elaboration.expressions.EApply;
5 import org.simantics.scl.compiler.elaboration.expressions.Expression;
6 import org.simantics.scl.compiler.types.Type;
7
8 public interface MacroRule {
9
10     Expression apply(SimplificationContext context, Type[] typeParameters, EApply apply);
11     
12 }