mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
- <rdar://problem/16306600> QoI: passing a 'let' value as an inout results in an unfriendly diagnostic
- <rdar://problem/16927246> provide a fixit to change "let" to "var" if needing to mutate a variable
We now refer to an inout argument as such, e.g.:
t.swift:7:9: error: cannot pass 'let' value 'a' as inout argument
swap(&a, &b)
^
we also produce a note with a fixit to rewrite let->var in trivial cases where mutation is
being assed for, e.g.:
t.swift:3:3: note: change 'let' to 'var' to make it mutable
let a = 42
^~~
var
The note is produced by both Sema and DI.
Swift SVN r27774
95 lines
3.2 KiB
C++
95 lines
3.2 KiB
C++
//===- DiagnosticsCommon.def - Diagnostics Text -----------------*- C++ -*-===//
|
|
//
|
|
// This source file is part of the Swift.org open source project
|
|
//
|
|
// Copyright (c) 2014 - 2015 Apple Inc. and the Swift project authors
|
|
// Licensed under Apache License v2.0 with Runtime Library Exception
|
|
//
|
|
// See http://swift.org/LICENSE.txt for license information
|
|
// See http://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// This file defines diagnostics that can be emitted across the whole compiler.
|
|
// Each diagnostic is described using one of three kinds (error, warning, or
|
|
// note) along with a unique identifier, category, options, and text, and is
|
|
// followed by a signature describing the diagnostic argument kinds.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#if !(defined(DIAG) || (defined(ERROR) && defined(WARNING) && defined(NOTE)))
|
|
# error Must define either DIAG or the set {ERROR,WARNING,NOTE}
|
|
#endif
|
|
|
|
#ifndef ERROR
|
|
# define ERROR(ID,Category,Options,Text,Signature) \
|
|
DIAG(ERROR,ID,Category,Options,Text,Signature)
|
|
#endif
|
|
|
|
#ifndef WARNING
|
|
# define WARNING(ID,Category,Options,Text,Signature) \
|
|
DIAG(WARNING,ID,Category,Options,Text,Signature)
|
|
#endif
|
|
|
|
#ifndef NOTE
|
|
# define NOTE(ID,Category,Options,Text,Signature) \
|
|
DIAG(NOTE,ID,Category,Options,Text,Signature)
|
|
#endif
|
|
|
|
ERROR(invalid_diagnostic,common,none,
|
|
"INTERNAL ERROR: this diagnostic should not be produced", ())
|
|
|
|
ERROR(not_implemented,TODO,none,
|
|
"INTERNAL ERROR: feature not implemented: %0", (StringRef))
|
|
|
|
ERROR(error_opening_output,common,none,
|
|
"error opening '%0' for output: %1", (StringRef, StringRef))
|
|
|
|
|
|
NOTE(previous_decldef,common,none,
|
|
"previous %select{declaration|definition}0 of %1 is here",
|
|
(bool, Identifier))
|
|
|
|
|
|
// Generic disambiguation
|
|
NOTE(while_parsing_as_left_angle_bracket,common,none,
|
|
"while parsing this '<' as a type parameter bracket", ())
|
|
NOTE(while_parsing_as_less_operator,common,none,
|
|
"while parsing this '<' as an operator", ())
|
|
|
|
|
|
// FIXME: This is used both as a parse error (a literal "super" outside a
|
|
// method) and a type-checker error ("super" in a method of a non-class type).
|
|
ERROR(super_not_in_class_method,common,none,
|
|
"'super' cannot be used outside of class members", ())
|
|
|
|
ERROR(class_func_not_in_class,common,none,
|
|
"class methods are only allowed within classes; "
|
|
"use 'static' to declare a static method", ())
|
|
ERROR(class_var_not_in_class,common,none,
|
|
"class properties are only allowed within classes; "
|
|
"use 'static' to declare a static property", ())
|
|
|
|
// FIXME: Used by both the parser and the type-checker.
|
|
ERROR(func_decl_without_brace,decl_parsing,PointsToFirstBadToken,
|
|
"expected '{' in body of function declaration", ())
|
|
ERROR(unsupported_fixed_length_array,type_parsing,none,
|
|
"fixed-length arrays are not yet supported", ())
|
|
|
|
ERROR(new_array_syntax,type_parsing,none,
|
|
"array types are now written with the brackets around the element type",
|
|
())
|
|
|
|
NOTE(convert_let_to_var,sema,none,
|
|
"change 'let' to 'var' to make it mutable", ())
|
|
|
|
|
|
#ifndef DIAG_NO_UNDEF
|
|
# if defined(DIAG)
|
|
# undef DIAG
|
|
# endif
|
|
# undef NOTE
|
|
# undef WARNING
|
|
# undef ERROR
|
|
#endif
|