package jasmin

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Module Linter.CompileError

type t = {
  1. location : Jasmin.Location.t;
  2. level : int;
  3. code : string;
  4. to_text : Format.formatter -> unit;
}

Error type :

  • code for error (useful for documentations)
  • level describes the minimal reporting level for this error
  • to_text A function to convert the error to a human-readable format