You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/README.md
+15-11
Original file line number
Diff line number
Diff line change
@@ -14,27 +14,31 @@ While you are writing smart contracts in Solidity, you will encounter different
14
14
|Type|Description|
15
15
|:--|:---------|
16
16
|`warning`|Can compile, but can potentially lead to security issues in your smart contract.|
17
-
|`SyntaxError`||
18
-
|`TypeError`||
19
-
|`FatalTypeError`|
20
-
|`DeclarationError`||
21
-
|`FatalDeclarationError`||
22
-
|`ParserError`||
17
+
|`SyntaxError`|Error related to the syntax|
18
+
|`TypeError`|Error related to the type|
19
+
|`FatalTypeError`|Error related to the type, stop parsing|
20
+
|`DeclarationError`|Error related to variable declaration|
21
+
|`FatalDeclarationError`|Error related to variable declaration, stop parsing|
22
+
|`ParserError`|Internal error related to the Parser|
23
23
24
24
The difference with the errors declared as `Fatal` is than the parser / compiler will throw and abort [see file ReferenceResolver.cpp for more explanation](https://github.com/ethereum/solidity/blob/develop/libsolidity/analysis/ReferencesResolver.h).
25
25
26
26
27
-
# Current State of the Debuger List
27
+
# Current Status of the Debuger List
28
28
29
29
The table below list the current state of all the errors reported and described from the Solidity compiler.
0 commit comments