-
Notifications
You must be signed in to change notification settings - Fork 13.5k
Unused identifiers compiler code #9200
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 1 commit
617b819
a8bc8b4
01966ba
1e5ca92
890d178
69dbeea
c78d0e2
107b369
481baa3
cd1ce0f
a38149d
0571c19
e17ed58
2b7f3a7
5a34352
93b7490
7aba626
ed5052d
f5cdc9c
8c3c7b1
dfad7cc
c325625
6a711bc
d62a43f
043a625
8f9d4ae
f15448a
c82453f
bcd6fc4
49385f4
5993015
f464f92
3b5f8d2
ed282d7
e502ba0
0e2e43d
d6c2bcd
f93c6c8
4521058
5eb7153
1401506
5361e5f
7fc4616
9753d09
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
- Loading branch information
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -2772,21 +2772,25 @@ | |
| "category": "Error", | ||
| "code": 6131 | ||
| }, | ||
| "File name '{0}' has a '{1}' extension - stripping it": { | ||
| "category": "Message", | ||
| "code": 6132 | ||
| }, | ||
| "Variable '{0}' has never been used.": { | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Variable '0' is never used |
||
| "category": "Error", | ||
| "code": 6132 | ||
| "code": 6133 | ||
| }, | ||
| "Parameter '{0}' has never been used.": { | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Paramter '0' is never used. |
||
| "category": "Error", | ||
| "code": 6133 | ||
| "code": 6134 | ||
| }, | ||
| "Report Errors on Unused Locals.": { | ||
| "category": "Message", | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. same here.
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Done |
||
| "code": 6134 | ||
| "code": 6135 | ||
| }, | ||
| "Report Errors on Unused Parameters.": { | ||
| "category": "Message", | ||
| "code": 6135 | ||
| "code": 6136 | ||
| }, | ||
|
|
||
| "Variable '{0}' implicitly has an '{1}' type.": { | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this should be an "Error"
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done