Skip to content
This repository has been archived by the owner on Jul 2, 2021. It is now read-only.

Fixing of issue 280 #300

Open
wants to merge 74 commits into
base: master
Choose a base branch
from
Open

Fixing of issue 280 #300

wants to merge 74 commits into from

Commits on Aug 1, 2019

  1. Initial commit

    jthoene committed Aug 1, 2019
    Configuration menu
    Copy the full SHA
    f0ef981 View commit details
    Browse the repository at this point in the history

Commits on Aug 6, 2019

  1. Configuration menu
    Copy the full SHA
    e146ce7 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    54ce7a8 View commit details
    Browse the repository at this point in the history
  3. Fixing Issue 284

    This commit fixes #284
    jthoene committed Aug 6, 2019
    Configuration menu
    Copy the full SHA
    ae9f093 View commit details
    Browse the repository at this point in the history

Commits on Aug 9, 2019

  1. Configuration menu
    Copy the full SHA
    b7e8af4 View commit details
    Browse the repository at this point in the history
  2. removed junk comments

    Mazesch committed Aug 9, 2019
    Configuration menu
    Copy the full SHA
    6374119 View commit details
    Browse the repository at this point in the history
  3. added wrapping for more than 80 characters

    but the function for checking doesnt work
    yet(getLengthOfAssemblyExpression), maybe use
    IHiddenRegionFormatter.setOnAutowrap
    Mazesch committed Aug 9, 2019
    Configuration menu
    Copy the full SHA
    1c88003 View commit details
    Browse the repository at this point in the history
  4. Further Improving of test coverage for quickfixes

    Also extended some quickfixes.
    jthoene committed Aug 9, 2019
    Configuration menu
    Copy the full SHA
    5d19313 View commit details
    Browse the repository at this point in the history

Commits on Aug 13, 2019

  1. Added missing testcases for quickfixes

    The test coverage for compiler errors, warnings and it's quickfixes, now
    looks like the following:
    
    // Compiler ERRORS
    	String ERROR_CONSTANT_MODIFIER_WAS_REMOVED = Quickfix tested
    	String ERROR_DATA_LOCATION_MUST_BE_CALLDATA_FOR_EXTERNAL_PARAMETER =
    Quickfix tested
    	String ERROR_DATA_LOCATION_MUST_BE_MEMORY_FOR_PARAMETER = Quickfix
    tested
    	String ERROR_DATA_LOCATION_MUST_BE_MEMORY_FOR_RETURN_PARAMETER =
    Quickfix tested
    	String ERROR_DATA_LOCATION_MUST_BE_MEMORY_OR_STORAGE_FOR_RETURN_PARAMETER
    = Quickfix tested
    	String ERROR_DATALOCATION_MUST_BE_STORAGE = Not reproducable
    	String ERROR_DATA_LOCATION_MUST_BE_SPECIFIED_FOR_VARIABLE = Quickfix
    tested
    	String ERROR_DATA_LOCATION_MUST_BE_STORAGE_OR_MEMORY_FOR_PARAMETER =
    Quickfix tested
    	String ERROR_FUNCTION_DECLARED_AS_PURE_BUT_MUST_BE_VIEW = Not
    reproducable
    	String ERROR_FUNCTION_DECLARED_AS_VIEW_BUT_MUST_BE_PAYABLE_OR_NON_PAYABLE
    = Quickfix tested
    	String ERROR_FUNCTION_NAME_EQUALS_CONTRACT_NAME_DISALLOWED = Quickfix
    tested
    	String ERROR_INVALID_IMPLICID_CONVERSION_TO_ADDRESS_PAYABLE = Quickfix
    tested
    	String ERROR_MEMBER_TRANSFER_NOT_FOUND_OR_VISIBLE = No Quickfix
    available
    	String ERROR_NO_VISIBILITY_SPECIFIED = Quickfix tested
    	String ERROR_STATE_MUTABILITY_ONLY_ALLOWED_FOR_ADDRESS = Quickfix
    tested
    	String ERROR_THROW_KEYWORD_DISALLOWED = Quickfix tested
    	String ERROR_VAR_KEYWORD_DISALLOWED = Quickfix doesn't work because of
    bug
    	String ERROR_YEARS_IS_DISALLOWED = Quickfix tested
    	String ERROR_DEPRECATED_SUICIDE = Quickfix tested
    	String ERROR_DEPRECATED_SHA3 = Quickfix tested
    	String ERROR_INTERFACE_FUNCTIONS_CAN_NOT_HAVE_MODIFIERS = Quickfix
    tested
    	String ERROR_MSG_VALUE_ONLY_ALLOWED_IN_PAYABLE = No Quickfix available
    
    // Compiler WARNINGS
    	String WARNING_DEPRECATED_CALLCODE = Overshadowed by an error
    	String WARNING_DEPRECATED_FUNCTION_CONSTRUCTOR = Overshadowed by
    ERROR_FUNCTION_NAME_EQUALS_CONTRACT_NAME_DISALLOWED
    	String WARNING_DEPRECATED_NAMED_FUNCTION_PARAMETERS = Not producable by
    the compiler
    	String WARNING_DEPRECATED_NAMED_FUNCTION_RETURN_VALUES = Not producable
    by the compiler
    	String WARNING_DEPRECATED_SHA3 = Overshadowed by ERROR_DEPRECATED_SHA3
    	String WARNING_DEPRECATED_SUICIDE = Overshadowed by
    ERROR_DEPRECATED_SUICIDE
    	String WARNING_DEPRECATED_THROW = Overshadowed by
    ERROR_THROW_KEYWORD_DISALLOWED
    	String WARNING_FILE_NO_PRAGMA_SOLIDITY = Quickfix tested
    	String WARNING_FUNCTION_STATE_MUTABILITY_PURE = Quickfix tested
    	String WARNING_FUNCTION_STATE_MUTABILITY_VIEW = Quickfix tested
    	String WARNING_FUNCTION_UNUSED_PARAMETER = Quickfix tested
    	String WARNING_FUNCTION_VISIBILITY = Overshadowed by
    ERROR_NO_VISIBILITY_SPECIFIED
    	String WARNING_LOCAL_VARIABLE_UNUSED = Quickfix tested
    	String WARNING_MSG_VALUE_IN_NON_PAYABLE = Overshadowed by
    ERROR_MSG_VALUE_ONLY_ALLOWED_IN_PAYABLE
    	String WARNING_SHADOWED_DECLARATION = No Quickfix available
    	String WARNING_SOLIDITY_VERSION_NOT_THE_DEFAULT = Warning seems to be
    removed by the newer compiler version
    	String WARNING_USSAGE_OF_SEND = Quickfix tested
    	String WARNING_VARIABLE_STORAGE_POINTER = Overshadowed by an equivalent
    error, which is not documented by us at the moment
    jthoene committed Aug 13, 2019
    Configuration menu
    Copy the full SHA
    85107e4 View commit details
    Browse the repository at this point in the history
  2. Initial commit

    jthoene committed Aug 13, 2019
    Configuration menu
    Copy the full SHA
    2f3db0a View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    7f74284 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    939325b View commit details
    Browse the repository at this point in the history
  5. Fixing Issue 284

    This commit fixes #284
    jthoene committed Aug 13, 2019
    Configuration menu
    Copy the full SHA
    2f55c50 View commit details
    Browse the repository at this point in the history
  6. Further Improving of test coverage for quickfixes

    Also extended some quickfixes.
    jthoene committed Aug 13, 2019
    Configuration menu
    Copy the full SHA
    1a49bc6 View commit details
    Browse the repository at this point in the history
  7. Added missing testcases for quickfixes

    The test coverage for compiler errors, warnings and it's quickfixes, now
    looks like the following:
    
    // Compiler ERRORS
    	String ERROR_CONSTANT_MODIFIER_WAS_REMOVED = Quickfix tested
    	String ERROR_DATA_LOCATION_MUST_BE_CALLDATA_FOR_EXTERNAL_PARAMETER =
    Quickfix tested
    	String ERROR_DATA_LOCATION_MUST_BE_MEMORY_FOR_PARAMETER = Quickfix
    tested
    	String ERROR_DATA_LOCATION_MUST_BE_MEMORY_FOR_RETURN_PARAMETER =
    Quickfix tested
    	String ERROR_DATA_LOCATION_MUST_BE_MEMORY_OR_STORAGE_FOR_RETURN_PARAMETER
    = Quickfix tested
    	String ERROR_DATALOCATION_MUST_BE_STORAGE = Not reproducable
    	String ERROR_DATA_LOCATION_MUST_BE_SPECIFIED_FOR_VARIABLE = Quickfix
    tested
    	String ERROR_DATA_LOCATION_MUST_BE_STORAGE_OR_MEMORY_FOR_PARAMETER =
    Quickfix tested
    	String ERROR_FUNCTION_DECLARED_AS_PURE_BUT_MUST_BE_VIEW = Not
    reproducable
    	String ERROR_FUNCTION_DECLARED_AS_VIEW_BUT_MUST_BE_PAYABLE_OR_NON_PAYABLE
    = Quickfix tested
    	String ERROR_FUNCTION_NAME_EQUALS_CONTRACT_NAME_DISALLOWED = Quickfix
    tested
    	String ERROR_INVALID_IMPLICID_CONVERSION_TO_ADDRESS_PAYABLE = Quickfix
    tested
    	String ERROR_MEMBER_TRANSFER_NOT_FOUND_OR_VISIBLE = No Quickfix
    available
    	String ERROR_NO_VISIBILITY_SPECIFIED = Quickfix tested
    	String ERROR_STATE_MUTABILITY_ONLY_ALLOWED_FOR_ADDRESS = Quickfix
    tested
    	String ERROR_THROW_KEYWORD_DISALLOWED = Quickfix tested
    	String ERROR_VAR_KEYWORD_DISALLOWED = Quickfix doesn't work because of
    bug
    	String ERROR_YEARS_IS_DISALLOWED = Quickfix tested
    	String ERROR_DEPRECATED_SUICIDE = Quickfix tested
    	String ERROR_DEPRECATED_SHA3 = Quickfix tested
    	String ERROR_INTERFACE_FUNCTIONS_CAN_NOT_HAVE_MODIFIERS = Quickfix
    tested
    	String ERROR_MSG_VALUE_ONLY_ALLOWED_IN_PAYABLE = No Quickfix available
    
    // Compiler WARNINGS
    	String WARNING_DEPRECATED_CALLCODE = Overshadowed by an error
    	String WARNING_DEPRECATED_FUNCTION_CONSTRUCTOR = Overshadowed by
    ERROR_FUNCTION_NAME_EQUALS_CONTRACT_NAME_DISALLOWED
    	String WARNING_DEPRECATED_NAMED_FUNCTION_PARAMETERS = Not producable by
    the compiler
    	String WARNING_DEPRECATED_NAMED_FUNCTION_RETURN_VALUES = Not producable
    by the compiler
    	String WARNING_DEPRECATED_SHA3 = Overshadowed by ERROR_DEPRECATED_SHA3
    	String WARNING_DEPRECATED_SUICIDE = Overshadowed by
    ERROR_DEPRECATED_SUICIDE
    	String WARNING_DEPRECATED_THROW = Overshadowed by
    ERROR_THROW_KEYWORD_DISALLOWED
    	String WARNING_FILE_NO_PRAGMA_SOLIDITY = Quickfix tested
    	String WARNING_FUNCTION_STATE_MUTABILITY_PURE = Quickfix tested
    	String WARNING_FUNCTION_STATE_MUTABILITY_VIEW = Quickfix tested
    	String WARNING_FUNCTION_UNUSED_PARAMETER = Quickfix tested
    	String WARNING_FUNCTION_VISIBILITY = Overshadowed by
    ERROR_NO_VISIBILITY_SPECIFIED
    	String WARNING_LOCAL_VARIABLE_UNUSED = Quickfix tested
    	String WARNING_MSG_VALUE_IN_NON_PAYABLE = Overshadowed by
    ERROR_MSG_VALUE_ONLY_ALLOWED_IN_PAYABLE
    	String WARNING_SHADOWED_DECLARATION = No Quickfix available
    	String WARNING_SOLIDITY_VERSION_NOT_THE_DEFAULT = Warning seems to be
    removed by the newer compiler version
    	String WARNING_USSAGE_OF_SEND = Quickfix tested
    	String WARNING_VARIABLE_STORAGE_POINTER = Overshadowed by an equivalent
    error, which is not documented by us at the moment
    jthoene committed Aug 13, 2019
    Configuration menu
    Copy the full SHA
    a8d8e4a View commit details
    Browse the repository at this point in the history
  8. Merge branch 'issues_279_280' of

    https://github.com/Yakindu/solidity-ide.git into issues_279_280
    
    Conflicts:
    	plugins/com.yakindu.solidity.ui/src/com/yakindu/solidity/ui/quickfix/SolidityQuickfixProvider.xtend
    jthoene committed Aug 13, 2019
    Configuration menu
    Copy the full SHA
    c696f93 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    dbb4c75 View commit details
    Browse the repository at this point in the history
  10. Removed unused class

    jthoene committed Aug 13, 2019
    Configuration menu
    Copy the full SHA
    4d3137c View commit details
    Browse the repository at this point in the history

Commits on Aug 14, 2019

  1. Fix platform test for MacOSX.

    nyssen committed Aug 14, 2019
    Configuration menu
    Copy the full SHA
    77727e0 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    fee754f View commit details
    Browse the repository at this point in the history
  3. Merge pull request #302 from Yakindu/issue_301

    Fix platform test for MacOSX.
    flantony authored Aug 14, 2019
    Configuration menu
    Copy the full SHA
    648630e View commit details
    Browse the repository at this point in the history

Commits on Aug 15, 2019

  1. Bugfixing

    The solidity Plugin was renamed, but the PLUGIN_ID constant wasn't
    adapted.
    jthoene committed Aug 15, 2019
    Configuration menu
    Copy the full SHA
    fca3a5b View commit details
    Browse the repository at this point in the history
  2. Removed unused bindings

    jthoene committed Aug 15, 2019
    Configuration menu
    Copy the full SHA
    58bb1ac View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    6ee4bf0 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    469fa60 View commit details
    Browse the repository at this point in the history
  5. Fixed qualifier version

    jthoene committed Aug 15, 2019
    Configuration menu
    Copy the full SHA
    a847041 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    3c35eb7 View commit details
    Browse the repository at this point in the history
  7. fixed getLengthOfAssemblyExpression(FunctionalAssemblyExpression it)

    and fixed a small indentation error for, where
    FunctionalAssemblyExpressions had their name be followed by a space and
    not the opening bracket.
    Mazesch committed Aug 15, 2019
    Configuration menu
    Copy the full SHA
    a125a5d View commit details
    Browse the repository at this point in the history
  8. removed unused import

    Mazesch committed Aug 15, 2019
    Configuration menu
    Copy the full SHA
    08b3b90 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    cc34ee0 View commit details
    Browse the repository at this point in the history
  10. Added maven-clean-plugin

    jthoene committed Aug 15, 2019
    Configuration menu
    Copy the full SHA
    89fba6d View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    c8f7f3e View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    5b29013 View commit details
    Browse the repository at this point in the history

Commits on Aug 16, 2019

  1. fixed #298

    by changing `format(PragmaDirective it, extension IFormattableDocument
    document)`
    Mazesch committed Aug 16, 2019
    Configuration menu
    Copy the full SHA
    ccf4db9 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    827b53e View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    eeb62ed View commit details
    Browse the repository at this point in the history
  4. removed unused lines

    Mazesch committed Aug 16, 2019
    Configuration menu
    Copy the full SHA
    1ef3aa3 View commit details
    Browse the repository at this point in the history

Commits on Aug 20, 2019

  1. Configuration menu
    Copy the full SHA
    1314821 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    d3a995a View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    790e047 View commit details
    Browse the repository at this point in the history

Commits on Aug 21, 2019

  1. Configuration menu
    Copy the full SHA
    ceb43d1 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    3190ec2 View commit details
    Browse the repository at this point in the history

Commits on Aug 22, 2019

  1. Configuration menu
    Copy the full SHA
    2ae516a View commit details
    Browse the repository at this point in the history
  2. Merge pull request #307 from Yakindu/issue_298

    Issue 298
    flantony authored Aug 22, 2019
    Configuration menu
    Copy the full SHA
    adc84e6 View commit details
    Browse the repository at this point in the history

Commits on Aug 23, 2019

  1. Merge pull request #308 from Yakindu/issue_303

    Issue 303
    nyssen authored Aug 23, 2019
    Configuration menu
    Copy the full SHA
    172626e View commit details
    Browse the repository at this point in the history
  2. Poms and Manifests were fixed

    Maven Build finally runs (at least locally)
    jthoene committed Aug 23, 2019
    Configuration menu
    Copy the full SHA
    f5eb90f View commit details
    Browse the repository at this point in the history
  3. Initial commit

    jthoene committed Aug 23, 2019
    Configuration menu
    Copy the full SHA
    0e09f65 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    355b0ce View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    2116500 View commit details
    Browse the repository at this point in the history
  6. Fixing Issue 284

    This commit fixes #284
    jthoene committed Aug 23, 2019
    Configuration menu
    Copy the full SHA
    256fdc1 View commit details
    Browse the repository at this point in the history
  7. Further Improving of test coverage for quickfixes

    Also extended some quickfixes.
    jthoene committed Aug 23, 2019
    Configuration menu
    Copy the full SHA
    f3ca57e View commit details
    Browse the repository at this point in the history
  8. Added missing testcases for quickfixes

    The test coverage for compiler errors, warnings and it's quickfixes, now
    looks like the following:
    
    // Compiler ERRORS
    	String ERROR_CONSTANT_MODIFIER_WAS_REMOVED = Quickfix tested
    	String ERROR_DATA_LOCATION_MUST_BE_CALLDATA_FOR_EXTERNAL_PARAMETER =
    Quickfix tested
    	String ERROR_DATA_LOCATION_MUST_BE_MEMORY_FOR_PARAMETER = Quickfix
    tested
    	String ERROR_DATA_LOCATION_MUST_BE_MEMORY_FOR_RETURN_PARAMETER =
    Quickfix tested
    	String ERROR_DATA_LOCATION_MUST_BE_MEMORY_OR_STORAGE_FOR_RETURN_PARAMETER
    = Quickfix tested
    	String ERROR_DATALOCATION_MUST_BE_STORAGE = Not reproducable
    	String ERROR_DATA_LOCATION_MUST_BE_SPECIFIED_FOR_VARIABLE = Quickfix
    tested
    	String ERROR_DATA_LOCATION_MUST_BE_STORAGE_OR_MEMORY_FOR_PARAMETER =
    Quickfix tested
    	String ERROR_FUNCTION_DECLARED_AS_PURE_BUT_MUST_BE_VIEW = Not
    reproducable
    	String ERROR_FUNCTION_DECLARED_AS_VIEW_BUT_MUST_BE_PAYABLE_OR_NON_PAYABLE
    = Quickfix tested
    	String ERROR_FUNCTION_NAME_EQUALS_CONTRACT_NAME_DISALLOWED = Quickfix
    tested
    	String ERROR_INVALID_IMPLICID_CONVERSION_TO_ADDRESS_PAYABLE = Quickfix
    tested
    	String ERROR_MEMBER_TRANSFER_NOT_FOUND_OR_VISIBLE = No Quickfix
    available
    	String ERROR_NO_VISIBILITY_SPECIFIED = Quickfix tested
    	String ERROR_STATE_MUTABILITY_ONLY_ALLOWED_FOR_ADDRESS = Quickfix
    tested
    	String ERROR_THROW_KEYWORD_DISALLOWED = Quickfix tested
    	String ERROR_VAR_KEYWORD_DISALLOWED = Quickfix doesn't work because of
    bug
    	String ERROR_YEARS_IS_DISALLOWED = Quickfix tested
    	String ERROR_DEPRECATED_SUICIDE = Quickfix tested
    	String ERROR_DEPRECATED_SHA3 = Quickfix tested
    	String ERROR_INTERFACE_FUNCTIONS_CAN_NOT_HAVE_MODIFIERS = Quickfix
    tested
    	String ERROR_MSG_VALUE_ONLY_ALLOWED_IN_PAYABLE = No Quickfix available
    
    // Compiler WARNINGS
    	String WARNING_DEPRECATED_CALLCODE = Overshadowed by an error
    	String WARNING_DEPRECATED_FUNCTION_CONSTRUCTOR = Overshadowed by
    ERROR_FUNCTION_NAME_EQUALS_CONTRACT_NAME_DISALLOWED
    	String WARNING_DEPRECATED_NAMED_FUNCTION_PARAMETERS = Not producable by
    the compiler
    	String WARNING_DEPRECATED_NAMED_FUNCTION_RETURN_VALUES = Not producable
    by the compiler
    	String WARNING_DEPRECATED_SHA3 = Overshadowed by ERROR_DEPRECATED_SHA3
    	String WARNING_DEPRECATED_SUICIDE = Overshadowed by
    ERROR_DEPRECATED_SUICIDE
    	String WARNING_DEPRECATED_THROW = Overshadowed by
    ERROR_THROW_KEYWORD_DISALLOWED
    	String WARNING_FILE_NO_PRAGMA_SOLIDITY = Quickfix tested
    	String WARNING_FUNCTION_STATE_MUTABILITY_PURE = Quickfix tested
    	String WARNING_FUNCTION_STATE_MUTABILITY_VIEW = Quickfix tested
    	String WARNING_FUNCTION_UNUSED_PARAMETER = Quickfix tested
    	String WARNING_FUNCTION_VISIBILITY = Overshadowed by
    ERROR_NO_VISIBILITY_SPECIFIED
    	String WARNING_LOCAL_VARIABLE_UNUSED = Quickfix tested
    	String WARNING_MSG_VALUE_IN_NON_PAYABLE = Overshadowed by
    ERROR_MSG_VALUE_ONLY_ALLOWED_IN_PAYABLE
    	String WARNING_SHADOWED_DECLARATION = No Quickfix available
    	String WARNING_SOLIDITY_VERSION_NOT_THE_DEFAULT = Warning seems to be
    removed by the newer compiler version
    	String WARNING_USSAGE_OF_SEND = Quickfix tested
    	String WARNING_VARIABLE_STORAGE_POINTER = Overshadowed by an equivalent
    error, which is not documented by us at the moment
    jthoene committed Aug 23, 2019
    Configuration menu
    Copy the full SHA
    dfb6f01 View commit details
    Browse the repository at this point in the history
  9. Initial commit

    jthoene committed Aug 23, 2019
    Configuration menu
    Copy the full SHA
    7043b54 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    f148213 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    415a36a View commit details
    Browse the repository at this point in the history
  12. Fixing Issue 284

    This commit fixes #284
    jthoene committed Aug 23, 2019
    Configuration menu
    Copy the full SHA
    5270f46 View commit details
    Browse the repository at this point in the history
  13. Further Improving of test coverage for quickfixes

    Also extended some quickfixes.
    jthoene committed Aug 23, 2019
    Configuration menu
    Copy the full SHA
    f45cfc6 View commit details
    Browse the repository at this point in the history
  14. Added missing testcases for quickfixes

    The test coverage for compiler errors, warnings and it's quickfixes, now
    looks like the following:
    
    // Compiler ERRORS
    	String ERROR_CONSTANT_MODIFIER_WAS_REMOVED = Quickfix tested
    	String ERROR_DATA_LOCATION_MUST_BE_CALLDATA_FOR_EXTERNAL_PARAMETER =
    Quickfix tested
    	String ERROR_DATA_LOCATION_MUST_BE_MEMORY_FOR_PARAMETER = Quickfix
    tested
    	String ERROR_DATA_LOCATION_MUST_BE_MEMORY_FOR_RETURN_PARAMETER =
    Quickfix tested
    	String ERROR_DATA_LOCATION_MUST_BE_MEMORY_OR_STORAGE_FOR_RETURN_PARAMETER
    = Quickfix tested
    	String ERROR_DATALOCATION_MUST_BE_STORAGE = Not reproducable
    	String ERROR_DATA_LOCATION_MUST_BE_SPECIFIED_FOR_VARIABLE = Quickfix
    tested
    	String ERROR_DATA_LOCATION_MUST_BE_STORAGE_OR_MEMORY_FOR_PARAMETER =
    Quickfix tested
    	String ERROR_FUNCTION_DECLARED_AS_PURE_BUT_MUST_BE_VIEW = Not
    reproducable
    	String ERROR_FUNCTION_DECLARED_AS_VIEW_BUT_MUST_BE_PAYABLE_OR_NON_PAYABLE
    = Quickfix tested
    	String ERROR_FUNCTION_NAME_EQUALS_CONTRACT_NAME_DISALLOWED = Quickfix
    tested
    	String ERROR_INVALID_IMPLICID_CONVERSION_TO_ADDRESS_PAYABLE = Quickfix
    tested
    	String ERROR_MEMBER_TRANSFER_NOT_FOUND_OR_VISIBLE = No Quickfix
    available
    	String ERROR_NO_VISIBILITY_SPECIFIED = Quickfix tested
    	String ERROR_STATE_MUTABILITY_ONLY_ALLOWED_FOR_ADDRESS = Quickfix
    tested
    	String ERROR_THROW_KEYWORD_DISALLOWED = Quickfix tested
    	String ERROR_VAR_KEYWORD_DISALLOWED = Quickfix doesn't work because of
    bug
    	String ERROR_YEARS_IS_DISALLOWED = Quickfix tested
    	String ERROR_DEPRECATED_SUICIDE = Quickfix tested
    	String ERROR_DEPRECATED_SHA3 = Quickfix tested
    	String ERROR_INTERFACE_FUNCTIONS_CAN_NOT_HAVE_MODIFIERS = Quickfix
    tested
    	String ERROR_MSG_VALUE_ONLY_ALLOWED_IN_PAYABLE = No Quickfix available
    
    // Compiler WARNINGS
    	String WARNING_DEPRECATED_CALLCODE = Overshadowed by an error
    	String WARNING_DEPRECATED_FUNCTION_CONSTRUCTOR = Overshadowed by
    ERROR_FUNCTION_NAME_EQUALS_CONTRACT_NAME_DISALLOWED
    	String WARNING_DEPRECATED_NAMED_FUNCTION_PARAMETERS = Not producable by
    the compiler
    	String WARNING_DEPRECATED_NAMED_FUNCTION_RETURN_VALUES = Not producable
    by the compiler
    	String WARNING_DEPRECATED_SHA3 = Overshadowed by ERROR_DEPRECATED_SHA3
    	String WARNING_DEPRECATED_SUICIDE = Overshadowed by
    ERROR_DEPRECATED_SUICIDE
    	String WARNING_DEPRECATED_THROW = Overshadowed by
    ERROR_THROW_KEYWORD_DISALLOWED
    	String WARNING_FILE_NO_PRAGMA_SOLIDITY = Quickfix tested
    	String WARNING_FUNCTION_STATE_MUTABILITY_PURE = Quickfix tested
    	String WARNING_FUNCTION_STATE_MUTABILITY_VIEW = Quickfix tested
    	String WARNING_FUNCTION_UNUSED_PARAMETER = Quickfix tested
    	String WARNING_FUNCTION_VISIBILITY = Overshadowed by
    ERROR_NO_VISIBILITY_SPECIFIED
    	String WARNING_LOCAL_VARIABLE_UNUSED = Quickfix tested
    	String WARNING_MSG_VALUE_IN_NON_PAYABLE = Overshadowed by
    ERROR_MSG_VALUE_ONLY_ALLOWED_IN_PAYABLE
    	String WARNING_SHADOWED_DECLARATION = No Quickfix available
    	String WARNING_SOLIDITY_VERSION_NOT_THE_DEFAULT = Warning seems to be
    removed by the newer compiler version
    	String WARNING_USSAGE_OF_SEND = Quickfix tested
    	String WARNING_VARIABLE_STORAGE_POINTER = Overshadowed by an equivalent
    error, which is not documented by us at the moment
    jthoene committed Aug 23, 2019
    Configuration menu
    Copy the full SHA
    4a60823 View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    30ef968 View commit details
    Browse the repository at this point in the history
  16. Removed unused bindings

    jthoene committed Aug 23, 2019
    Configuration menu
    Copy the full SHA
    c0e4292 View commit details
    Browse the repository at this point in the history
  17. Configuration menu
    Copy the full SHA
    d2b69c1 View commit details
    Browse the repository at this point in the history
  18. Configuration menu
    Copy the full SHA
    cdc71ce View commit details
    Browse the repository at this point in the history
  19. Fixed qualifier version

    jthoene committed Aug 23, 2019
    Configuration menu
    Copy the full SHA
    e4ec362 View commit details
    Browse the repository at this point in the history
  20. Configuration menu
    Copy the full SHA
    ba40f79 View commit details
    Browse the repository at this point in the history
  21. Configuration menu
    Copy the full SHA
    543d67d View commit details
    Browse the repository at this point in the history
  22. Added maven-clean-plugin

    jthoene committed Aug 23, 2019
    Configuration menu
    Copy the full SHA
    5d25fd4 View commit details
    Browse the repository at this point in the history
  23. Configuration menu
    Copy the full SHA
    88ffa6f View commit details
    Browse the repository at this point in the history
  24. Configuration menu
    Copy the full SHA
    4dbbf6e View commit details
    Browse the repository at this point in the history
  25. Configuration menu
    Copy the full SHA
    ef2c5c1 View commit details
    Browse the repository at this point in the history
  26. Configuration menu
    Copy the full SHA
    94be445 View commit details
    Browse the repository at this point in the history
  27. Poms and Manifests were fixed

    Maven Build finally runs (at least locally)
    jthoene committed Aug 23, 2019
    Configuration menu
    Copy the full SHA
    a088828 View commit details
    Browse the repository at this point in the history
  28. Merge branch 'issues_279_280' of

    https://github.com/Yakindu/solidity-ide.git into issues_279_280
    
    Conflicts:
    	extensions/theia/.gitignore
    	plugins/com.yakindu.solidity.ide/src/com/yakindu/solidity/ide/internal/SolidityIdeCodeActionService.xtend
    	plugins/com.yakindu.solidity.solc.mac.fragment/META-INF/MANIFEST.MF
    	plugins/com.yakindu.solidity.solc.win.fragment/META-INF/MANIFEST.MF
    	plugins/com.yakindu.solidity.tests/META-INF/MANIFEST.MF
    jthoene committed Aug 23, 2019
    Configuration menu
    Copy the full SHA
    572a16f View commit details
    Browse the repository at this point in the history
  29. Fixing after Rebase

    jthoene committed Aug 23, 2019
    Configuration menu
    Copy the full SHA
    3db311d View commit details
    Browse the repository at this point in the history
  30. Configuration menu
    Copy the full SHA
    dde540e View commit details
    Browse the repository at this point in the history