Skip to content
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

constructor keyword not colored #33

Open
wjmelements opened this issue Aug 9, 2018 · 2 comments
Open

constructor keyword not colored #33

wjmelements opened this issue Aug 9, 2018 · 2 comments

Comments

@wjmelements
Copy link

A recent version of solidity added the constructor keyword.

contract OwnedToken {
    address owner;
    bytes32 name;

    constructor(bytes32 _name) public {
        owner = msg.sender;
        name = _name;
    }
}
@wjmelements
Copy link
Author

Another word that is not colored is is, which is the inheritance keyword.

@antonioshadji
Copy link

Pull request has been created for constructor. #31

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants