Changeset b52abe0


Ignore:
Timestamp:
Apr 3, 2020, 2:26:38 PM (4 years ago)
Author:
Thierry Delisle <tdelisle@…>
Branches:
ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
Children:
ebe0f0d
Parents:
0f3d844
Message:

Implemented basic language server with no capabilities

Location:
tools
Files:
8 added
1 edited

Legend:

Unmodified
Added
Removed
  • tools/vscode/uwaterloo.cforall-0.1.0/package.json

    r0f3d844 rb52abe0  
    1515                "Other"
    1616        ],
     17        "activationEvents": [
     18                "onLanguage:cforall"
     19        ],
     20        "main": "./client/main.js",
    1721        "contributes": {
    1822                "languages": [
     
    4044                        }
    4145                ]
     46        },
     47        "configuration": {
     48                "type": "object",
     49                "title": "Example configuration",
     50                "properties": {
     51                        "languageServerExample.maxNumberOfProblems": {
     52                                "scope": "resource",
     53                                "type": "number",
     54                                "default": 100,
     55                                "description": "Controls the maximum number of problems produced by the server."
     56                        }
     57                }
     58        },
     59        "dependencies": {
     60                "vscode-languageclient": "^4.1.4"
     61        },
     62        "devDependencies": {
     63                "vscode-languageclient": "^4.1.4"
    4264        }
    4365}
Note: See TracChangeset for help on using the changeset viewer.