1'use strict'; 2 3module.exports = { 4 llvm_dialect : $ => prec.right(choice( 5 seq('llvm.func', $._op_func), 6 7 seq('llvm.return', 8 field('attributes', optional($.attribute)), 9 field('results', optional($._value_use_type_list))))) 10} 11