1 package jdk.incubator.code.extern;
 2 
 3 /**
 4  * A dialect factory for constructing a dialect's operations and type elements from their
 5  * externalized form.
 6  *
 7  * @param opFactory the operation factory.
 8  * @param typeElementFactory the type element factory.
 9  */
10 public record DialectFactory(OpFactory opFactory, TypeElementFactory typeElementFactory) {
11 
12     // OpFactory
13     // OpDeclaration
14     // TypeElementFactory
15 }