Andreas Mülder

Results 19 issues of Andreas Mülder

Since Solidity 0.5.x it is not possible anymore to declare a variable with the 'var' keyword. This should be removed from the grammar.

Use signing to avoid the "Warning, you are installing unsigned content" on an update.

releng

It is not possible to specify gas/value for operation calls: ``` contract AbstractB { function getX() returns(uint) { return 3; } } contract A { function makeCall(address addressB) { AbstractB(addressB).getX.value(1...

bug

Add code completion for valid 'pragma experimental' values with additional hover documentation.

enhancement

We should provide basic documentation for the Solidity Domain ![unbenannt](https://user-images.githubusercontent.com/6338708/45143106-8ea4d280-b1ba-11e8-9508-51683099c3a0.png)

enhancement
Statecharts

Some Tests Fail because the EObjectValidator of EMF runs and find non unique IDs. Problem is that the Xtext registrar retreives a null package from the ExpressionsJavaGenerator and as fallback...

Implement type filtering for FOR declaration

the 'for' type is ignored

The getter's name is the variable's name. So in ``` contract foo { int public bar; } ``` You can access it through `someFooInstance.bar()`.