Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions public/bundle.js
Original file line number Diff line number Diff line change
Expand Up @@ -9694,7 +9694,7 @@
resetSupported: anyMethodExists(solJson, 'solidity_reset'),
compileJsonSupported: anyMethodExists(solJson, 'compileJSON'),
compileJsonMultiSupported: anyMethodExists(solJson, 'compileJSONMulti'),
compileJsonCallbackSuppported: anyMethodExists(solJson, 'compileJSONCallback'),
compileJsonCallbackSupported: anyMethodExists(solJson, 'compileJSONCallback'),
compileJsonStandardSupported: anyMethodExists(solJson, 'compileStandard', 'solidity_compile')
};
}
Expand Down Expand Up @@ -11626,7 +11626,7 @@
features: {
legacySingleInput: methodFlags.compileJsonStandardSupported,
multipleInputs: methodFlags.compileJsonMultiSupported || methodFlags.compileJsonStandardSupported,
importCallback: methodFlags.compileJsonCallbackSuppported || methodFlags.compileJsonStandardSupported,
importCallback: methodFlags.compileJsonCallbackSupported || methodFlags.compileJsonStandardSupported,
nativeStandardJSON: methodFlags.compileJsonStandardSupported
},
compile: compileStandardWrapper.bind(this, compileBindings),
Expand Down Expand Up @@ -17785,4 +17785,4 @@
}, false);

},{"solc/wrapper":57}]},{},[100]);


Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ Furthermore, the Yul optimizer is automatically activated together with the regu
- Introduce `try`/`catch`-statement
- Modify `push(element)` for dynamic storage arrays such that it does not return the new length anymore.
- Yul: Introduce `leave` statement that exits the current function.
- JSON AST: Add the function selector of each externally-visible FunctonDefinition to the AST JSON export.
- JSON AST: Add the function selector of each externally-visible FunctionDefinition to the AST JSON export.

**Compiler Features:**

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -441,7 +441,7 @@ Almost 11% selected “OTHER” and specified some of their most significant pai

### Documentation

When asked if the participants find the official documentaiton helpful, 68% of the survey respondents reported the Solidity documentation to be helpful, followed by 29.1% who consider it somewhat useful.
When asked if the participants find the official documentation helpful, 68% of the survey respondents reported the Solidity documentation to be helpful, followed by 29.1% who consider it somewhat useful.

As low as 2.9% voted that they do not find the docs useful at all.

Expand Down