Port the compiler to the typaram foo<T> syntax.

This commit is contained in:
Erick Tryzelaar 2011-08-12 07:15:18 -07:00 committed by Graydon Hoare
parent f764f9a8cf
commit e4a0f997fb
51 changed files with 568 additions and 568 deletions

View file

@ -95,10 +95,10 @@ fn span_to_str(sp: &span, cm: &codemap) -> str {
ret res;
}
fn emit_diagnostic(sp: &option::t[span], msg: &str, kind: &str, color: u8,
fn emit_diagnostic(sp: &option::t<span>, msg: &str, kind: &str, color: u8,
cm: &codemap) {
let ss = "<input>:0:0:0:0";
let maybe_lines: option::t[@file_lines] = none;
let maybe_lines: option::t<@file_lines> = none;
alt sp {
some(ssp) {
ss = span_to_str(ssp, cm);
@ -119,8 +119,8 @@ fn emit_diagnostic(sp: &option::t[span], msg: &str, kind: &str, color: u8,
maybe_highlight_lines(sp, cm, maybe_lines);
}
fn maybe_highlight_lines(sp: &option::t[span], cm: &codemap,
maybe_lines: option::t[@file_lines]) {
fn maybe_highlight_lines(sp: &option::t<span>, cm: &codemap,
maybe_lines: option::t<@file_lines>) {
alt maybe_lines {
some(lines) {
@ -187,13 +187,13 @@ fn maybe_highlight_lines(sp: &option::t[span], cm: &codemap,
}
}
fn emit_warning(sp: &option::t[span], msg: &str, cm: &codemap) {
fn emit_warning(sp: &option::t<span>, msg: &str, cm: &codemap) {
emit_diagnostic(sp, msg, "warning", 11u8, cm);
}
fn emit_error(sp: &option::t[span], msg: &str, cm: &codemap) {
fn emit_error(sp: &option::t<span>, msg: &str, cm: &codemap) {
emit_diagnostic(sp, msg, "error", 9u8, cm);
}
fn emit_note(sp: &option::t[span], msg: &str, cm: &codemap) {
fn emit_note(sp: &option::t<span>, msg: &str, cm: &codemap) {
emit_diagnostic(sp, msg, "note", 10u8, cm);
}