mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-24 11:41:02 +00:00
154 lines
4.7 KiB
Rust
154 lines
4.7 KiB
Rust
use structopt::StructOpt;
|
|
|
|
use codespan::Files;
|
|
use codespan_reporting::diagnostic::{Diagnostic, Label};
|
|
use codespan_reporting::term::termcolor::StandardStream;
|
|
use codespan_reporting::term::{emit, ColorArg};
|
|
|
|
#[derive(Debug, StructOpt)]
|
|
#[structopt(name = "emit")]
|
|
pub struct Opts {
|
|
/// Configure coloring of output
|
|
#[structopt(
|
|
long = "color",
|
|
parse(try_from_str),
|
|
default_value = "auto",
|
|
raw(possible_values = "ColorArg::VARIANTS", case_insensitive = "true")
|
|
)]
|
|
pub color: ColorArg,
|
|
}
|
|
|
|
fn main() {
|
|
let opts = Opts::from_args();
|
|
let mut files = Files::new();
|
|
|
|
let file_id1 = files.add(
|
|
"Data/Nat.fun",
|
|
unindent::unindent(
|
|
"
|
|
module Data.Nat where
|
|
|
|
data Nat : Type where
|
|
zero : Nat
|
|
succ : Nat → Nat
|
|
|
|
{-# BUILTIN NATRAL Nat #-}
|
|
|
|
infixl 6 _+_ _-_
|
|
|
|
_+_ : Nat → Nat → Nat
|
|
zero + n₂ = n₂
|
|
succ n₁ + n₂ = succ (n₁ + n₂)
|
|
|
|
_-_ : Nat → Nat → Nat
|
|
n₁ - zero = n₁
|
|
zero - succ n₂ = zero
|
|
succ n₁ - succ n₂ = n₁ - n₂
|
|
",
|
|
),
|
|
);
|
|
|
|
let file_id2 = files.add(
|
|
"Test.fun",
|
|
unindent::unindent(
|
|
r#"
|
|
module Test where
|
|
|
|
_ : Nat
|
|
_ = 123 + "hello"
|
|
"#,
|
|
),
|
|
);
|
|
|
|
let file_id3 = files.add(
|
|
"FizzBuzz.fun",
|
|
unindent::unindent(
|
|
r#"
|
|
module FizzBuzz where
|
|
|
|
fizz₁ : Nat → String
|
|
fizz₁ num = case (mod num 5) (mod num 3) of
|
|
0 0 => "FizzBuzz"
|
|
0 _ => "Fizz"
|
|
_ 0 => "Buzz"
|
|
_ _ => num
|
|
|
|
fizz₂ num =
|
|
case (mod num 5) (mod num 3) of
|
|
0 0 => "FizzBuzz"
|
|
0 _ => "Fizz"
|
|
_ 0 => "Buzz"
|
|
_ _ => num
|
|
"#,
|
|
),
|
|
);
|
|
|
|
let diagnostics = [
|
|
// Unknown builtin error
|
|
Diagnostic::new_error(
|
|
"unknown builtin: `NATRAL`",
|
|
Label::new(file_id1, 96..102, "unknown builtin"),
|
|
)
|
|
.with_notes(vec![
|
|
"there is a builtin with a similar name: `NATURAL`".to_owned()
|
|
]),
|
|
// Unused parameter warning
|
|
Diagnostic::new_warning(
|
|
"unused parameter pattern: `n₂`",
|
|
Label::new(file_id1, 285..289, "unused parameter"),
|
|
)
|
|
.with_notes(vec!["consider using a wildcard pattern: `_`".to_owned()]),
|
|
// Unexpected type error
|
|
Diagnostic::new_error(
|
|
"unexpected type in application of `_+_`",
|
|
Label::new(file_id2, 37..44, "expected `Nat`, found `String`"),
|
|
)
|
|
.with_code("E0001")
|
|
.with_secondary_labels(vec![Label::new(
|
|
file_id1,
|
|
130..155,
|
|
"based on the definition of `_+_`",
|
|
)]),
|
|
// Incompatible match clause error
|
|
Diagnostic::new_error(
|
|
"`case` clauses have incompatible types",
|
|
Label::new(file_id3, 163..166, "expected `String`, found `Nat`"),
|
|
)
|
|
.with_code("E0308")
|
|
.with_notes(vec![unindent::unindent(
|
|
"
|
|
expected type `String`
|
|
found type `Nat`
|
|
",
|
|
)])
|
|
.with_secondary_labels(vec![
|
|
Label::new(file_id3, 62..166, "`case` clauses have incompatible types"),
|
|
Label::new(file_id3, 41..47, "expected type `String` found here"),
|
|
]),
|
|
// Incompatible match clause error
|
|
Diagnostic::new_error(
|
|
"`case` clauses have incompatible types",
|
|
Label::new(file_id3, 303..306, "expected `String`, found `Nat`"),
|
|
)
|
|
.with_code("E0308")
|
|
.with_notes(vec![unindent::unindent(
|
|
"
|
|
expected type `String`
|
|
found type `Nat`
|
|
",
|
|
)])
|
|
.with_secondary_labels(vec![
|
|
Label::new(file_id3, 186..306, "`case` clauses have incompatible types"),
|
|
Label::new(file_id3, 233..243, "this is found to be of type `String`"),
|
|
Label::new(file_id3, 259..265, "this is found to be of type `String`"),
|
|
Label::new(file_id3, 281..287, "this is found to be of type `String`"),
|
|
]),
|
|
];
|
|
|
|
let writer = StandardStream::stderr(opts.color.into());
|
|
let config = codespan_reporting::term::Config::default();
|
|
for diagnostic in &diagnostics {
|
|
emit(&mut writer.lock(), &config, &files, &diagnostic).unwrap();
|
|
}
|
|
}
|