| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540 |
- {
- "fileTypes": [
- "sol"
- ],
- "name": "Solidity",
- "patterns": [
- {
- "include": "#natspec"
- },
- {
- "include": "#comment"
- },
- {
- "include": "#operator"
- },
- {
- "include": "#control"
- },
- {
- "include": "#constant"
- },
- {
- "include": "#number"
- },
- {
- "include": "#string"
- },
- {
- "include": "#type"
- },
- {
- "include": "#global"
- },
- {
- "include": "#declaration"
- },
- {
- "include": "#function-call"
- },
- {
- "include": "#assembly"
- },
- {
- "include": "#punctuation"
- }
- ],
- "repository": {
- "natspec": {
- "patterns": [
- {
- "begin": "/\\*\\*",
- "end": "\\*/",
- "name": "comment.block.documentation.solidity",
- "patterns": [
- {
- "include": "#natspec-tags"
- }
- ]
- },
- {
- "begin": "///",
- "end": "$",
- "name": "comment.block.documentation.solidity",
- "patterns": [
- {
- "include": "#natspec-tags"
- }
- ]
- }
- ]
- },
- "natspec-tags": {
- "patterns": [
- {
- "include": "#natspec-tag-title"
- },
- {
- "include": "#natspec-tag-author"
- },
- {
- "include": "#natspec-tag-notice"
- },
- {
- "include": "#natspec-tag-dev"
- },
- {
- "include": "#natspec-tag-param"
- },
- {
- "include": "#natspec-tag-return"
- }
- ]
- },
- "natspec-tag-title": {
- "match": "(@title)\\b",
- "name": "storage.type.title.natspec"
- },
- "natspec-tag-author": {
- "match": "(@author)\\b",
- "name": "storage.type.author.natspec"
- },
- "natspec-tag-notice": {
- "match": "(@notice)\\b",
- "name": "storage.type.dev.natspec"
- },
- "natspec-tag-dev": {
- "match": "(@dev)\\b",
- "name": "storage.type.dev.natspec"
- },
- "natspec-tag-param": {
- "match": "(@param)(\\s+([A-Za-z_]\\w*))?\\b",
- "captures": {
- "1": {
- "name": "storage.type.param.natspec"
- },
- "3": {
- "name": "variable.other.natspec"
- }
- }
- },
- "natspec-tag-return": {
- "match": "(@return)\\b",
- "name": "storage.type.return.natspec"
- },
- "comment": {
- "patterns": [
- {
- "include": "#comment-line"
- },
- {
- "include": "#comment-block"
- }
- ]
- },
- "comment-line": {
- "match": "(?<!tp:)//.*?$",
- "name": "comment.line.solidity"
- },
- "comment-block": {
- "begin": "/\\*",
- "end": "\\*/",
- "name": "comment.block.solidity"
- },
- "operator": {
- "patterns": [
- {
- "include": "#operator-logic"
- },
- {
- "include": "#operator-mapping"
- },
- {
- "include": "#operator-arithmetic"
- },
- {
- "include": "#operator-binary"
- },
- {
- "include": "#operator-assignment"
- }
- ]
- },
- "operator-logic": {
- "match": "(==|<(?!<)|<=|>(?!>)|>=|\\&\\&|\\|\\||\\:(?!=)|\\?)",
- "name": "keyword.operator.logic.solidity"
- },
- "operator-mapping": {
- "match": "(=>)",
- "name": "keyword.operator.mapping.solidity"
- },
- "operator-arithmetic": {
- "match": "(\\+|\\-|\\/|\\*)",
- "name": "keyword.operator.arithmetic.solidity"
- },
- "operator-binary": {
- "match": "(\\^|\\&|\\||<<|>>)",
- "name": "keyword.operator.binary.solidity"
- },
- "operator-assignment": {
- "match": "(\\:?=)",
- "name": "keyword.operator.assignment.solidity"
- },
- "control": {
- "patterns": [
- {
- "include": "#control-flow"
- },
- {
- "include": "#control-using"
- },
- {
- "include": "#control-import"
- },
- {
- "include": "#control-pragma"
- },
- {
- "include": "#control-underscore"
- },
- {
- "include": "#control-other"
- }
- ]
- },
- "control-flow": {
- "match": "\\b(if|else|for|while|do|break|continue|throw|returns?)\\b",
- "name": "keyword.control.flow.solidity"
- },
- "control-using": {
- "match": "\\b(using)\\b",
- "name": "keyword.control.using.solidity"
- },
- "control-import": {
- "match": "\\b(import)\\b",
- "name": "keyword.control.import.solidity"
- },
- "control-pragma": {
- "match": "\\b(pragma)(?:\\s+([A-Za-z_]\\w+)\\s+([^\\s]+))?\\b",
- "captures": {
- "1": {
- "name": "keyword.control.pragma.solidity"
- },
- "2": {
- "name": "entity.name.tag.pragma.solidity"
- },
- "3": {
- "name": "constant.other.pragma.solidity"
- }
- }
- },
- "control-underscore": {
- "match": "\\b(_)\\b",
- "name": "constant.other.underscore.solidity"
- },
- "control-other": {
- "match": "\\b(new|delete|emit)\\b",
- "name": "keyword.control.solidity"
- },
- "constant": {
- "patterns": [
- {
- "include": "#constant-boolean"
- },
- {
- "include": "#constant-time"
- },
- {
- "include": "#constant-currency"
- }
- ]
- },
- "constant-boolean": {
- "match": "\\b(true|false)\\b",
- "name": "constant.language.boolean.solidity"
- },
- "constant-time": {
- "match": "\\b(seconds|minutes|hours|days|weeks|years)\\b",
- "name": "constant.language.time.solidity"
- },
- "constant-currency": {
- "match": "\\b(ether|wei)\\b",
- "name": "constant.language.currency.solidity"
- },
- "number": {
- "patterns": [
- {
- "include": "#number-decimal"
- },
- {
- "include": "#number-hex"
- }
- ]
- },
- "number-decimal": {
- "match": "\\b(\\d+(\\.\\d+)?)\\b",
- "name": "constant.numeric.decimal.solidity"
- },
- "number-hex": {
- "match": "\\b(0[xX][a-fA-F0-9]+)\\b",
- "name": "constant.numeric.hexadecimal.solidity"
- },
- "string": {
- "patterns": [
- {
- "match": "\\\".*?\\\"",
- "name": "string.quoted.double.solidity"
- },
- {
- "match": "\\'.*?\\'",
- "name": "string.quoted.single.solidity"
- }
- ]
- },
- "type": {
- "patterns": [
- {
- "include": "#type-primitive"
- }
- ]
- },
- "type-primitive": {
- "match": "\\b(address|string\\d*|bytes\\d*|int\\d*|uint\\d*|bool|hash\\d*)\\b",
- "name": "support.type.primitive.solidity"
- },
- "global": {
- "patterns": [
- {
- "include": "#global-variables"
- },
- {
- "include": "#global-functions"
- }
- ]
- },
- "global-variables": {
- "patterns": [
- {
- "match": "\\b(msg|block|tx|now)\\b",
- "name": "variable.language.transaction.solidity"
- },
- {
- "match": "\\b(this)\\b",
- "name": "variable.language.this.solidity"
- },
- {
- "match": "\\b(super)\\b",
- "name": "variable.language.super.solidity"
- }
- ]
- },
- "global-functions": {
- "patterns": [
- {
- "match": "\\b(require|assert|revert)\\b",
- "name": "keyword.control.exceptions.solidity"
- },
- {
- "match": "\\b(selfdestruct|suicide)\\b",
- "name": "keyword.control.contract.solidity"
- },
- {
- "match": "\\b(addmod|mulmod|keccak256|sha256|sha3|ripemd160|ecrecover)\\b",
- "name": "support.function.math.solidity"
- },
- {
- "match": "\\b(blockhash|gasleft)\\b",
- "name": "variable.language.transaction.solidity"
- }
- ]
- },
- "declaration": {
- "patterns": [
- {
- "include": "#declaration-contract"
- },
- {
- "include": "#declaration-interface"
- },
- {
- "include": "#declaration-library"
- },
- {
- "include": "#declaration-struct"
- },
- {
- "include": "#declaration-event"
- },
- {
- "include": "#declaration-enum"
- },
- {
- "include": "#declaration-function"
- },
- {
- "include": "#declaration-constructor"
- },
- {
- "include": "#declaration-modifier"
- },
- {
- "include": "#declaration-mapping"
- }
- ]
- },
- "declaration-contract": {
- "patterns": [
- {
- "match": "\\b(contract)(\\s+([A-Za-z_]\\w*))?\\b",
- "captures": {
- "1": {
- "name": "storage.type.contract.solidity"
- },
- "3": {
- "name": "entity.name.type.contract.solidity"
- }
- }
- },
- {
- "match": "\\b(is)\\b",
- "name": "storage.modifier.is.solidity"
- }
- ]
- },
- "declaration-interface": {
- "match": "\\b(interface)(\\s+([A-Za-z_]\\w*))?\\b",
- "captures": {
- "1": {
- "name": "storage.type.interface.solidity"
- },
- "3": {
- "name": "entity.name.type.interface.solidity"
- }
- }
- },
- "declaration-library": {
- "match": "\\b(library)(\\s+([A-Za-z_]\\w*))?\\b",
- "captures": {
- "1": {
- "name": "storage.type.library.solidity"
- },
- "3": {
- "name": "entity.name.type.library.solidity"
- }
- }
- },
- "declaration-struct": {
- "match": "\\b(struct)(\\s+([A-Za-z_]\\w*))?\\b",
- "captures": {
- "1": {
- "name": "storage.type.struct.solidity"
- },
- "3": {
- "name": "entity.name.type.struct.solidity"
- }
- }
- },
- "declaration-event": {
- "match": "\\b(event)(\\s+([A-Za-z_]\\w*))?\\b",
- "captures": {
- "1": {
- "name": "storage.type.event.solidity"
- },
- "3": {
- "name": "entity.name.type.event.solidity"
- }
- }
- },
- "declaration-constructor": {
- "match": "\\b(constructor)\\b",
- "captures": {
- "1": {
- "name": "storage.type.constructor.solidity"
- }
- }
- },
- "declaration-enum": {
- "match": "\\b(enum)(\\s+([A-Za-z_]\\w*))?\\b",
- "captures": {
- "1": {
- "name": "storage.type.enum.solidity"
- },
- "3": {
- "name": "entity.name.type.enum.solidity"
- }
- }
- },
- "declaration-function": {
- "patterns": [
- {
- "match": "\\b(function)\\s+([A-Za-z_]\\w*)\\b",
- "captures": {
- "1": {
- "name": "storage.type.function.solidity"
- },
- "2": {
- "name": "entity.name.function.solidity"
- }
- }
- },
- {
- "match": "\\b(private|public|internal|external|constant|pure|view|payable|nonpayable|inherited|indexed|storage|memory|virtual|override)\\b",
- "name": "storage.type.mofifier.solidity"
- }
- ]
- },
- "declaration-modifier": {
- "match": "\\b(modifier)(\\s+([A-Za-z_]\\w*))?\\b",
- "captures": {
- "1": {
- "name": "storage.type.modifier.solidity"
- },
- "3": {
- "name": "entity.name.function.solidity"
- }
- }
- },
- "declaration-mapping": {
- "match": "\\b(mapping)\\b",
- "name": "storage.type.mapping.solidity"
- },
- "function-call": {
- "match": "\\b([A-Za-z_]\\w*)\\s*\\(",
- "captures": {
- "1": {
- "name": "entity.name.function.solidity"
- }
- }
- },
- "assembly": {
- "patterns": [
- {
- "match": "\\b(assembly)\\b",
- "name": "keyword.control.assembly.solidity"
- },
- {
- "match": "\\b(let)\\b",
- "name": "storage.type.assembly.solidity"
- }
- ]
- },
- "punctuation": {
- "patterns": [
- {
- "match": ";",
- "name": "punctuation.terminator.statement.solidity"
- },
- {
- "match": "\\.",
- "name": "punctuation.accessor.solidity"
- },
- {
- "match": ",",
- "name": "punctuation.separator.solidity"
- }
- ]
- }
- },
- "scopeName": "source.solidity",
- "uuid": "123"
- }
|