sys

A set of unix utils in hare!
Log | Files | Refs | README

ast.ha (194B)


      1 // The location of an AST node
      2 export type ast_location = struct {
      3 	// The location of the start of the AST node
      4 	start: location,
      5 	// The location of the end of the AST node
      6 	end: location,
      7 };