Giter VIP home page Giter VIP logo

Comments (5)

liweijian avatar liweijian commented on July 20, 2024

The source code which load the server.web.js:

export function activate(context: ExtensionContext) {
  const clientOptions: LanguageClientOptions = {
    documentSelector: [{ language: 'moonbit' }],
  }
  // Create a worker. The worker main file implements the language server.
  const serverMain = Uri.joinPath(context.extensionUri, 'dist/server.web.js')

  const worker = new Worker(serverMain.toString(true))

  // create the language server client to communicate with the server running in the worker
  const client = new LanguageClient('moonbit', 'Moonbit', clientOptions, worker)

  const disposable = client.start()
  context.subscriptions.push(disposable)
}

This extension works pretty well on VS Code client, not sure if we need to change it to work in web ?

from vscode-web.

liweijian avatar liweijian commented on July 20, 2024

I did try to add the script from index.html:

<script src="./moonbit/dist/server.web.js"></script>

But the extension's auto-complete still not work:
image

from vscode-web.

liweijian avatar liweijian commented on July 20, 2024

I tried to install it from Open VSX, and got the same error:

image

image

from vscode-web.

liweijian avatar liweijian commented on July 20, 2024

image

And it works in github.dev(see the auto-complete from LSP server)

type u struct {
  x:float
  y:int
}

func init {
    let h = {x:3.1, y:2}
    h.   
}

from vscode-web.

lemanschik avatar lemanschik commented on July 20, 2024

out of scope for this package this is not a VSCODE Implementation it is the packaging process and the dev dependencies to do your own how ever i could extract out of your screen shoots that you got type errors in your code i saw stuff like mixing of importScript:/// so you did maybe write that wrong some where and maybe 100 other failures you need to get eslint up and running first then typescript then proceed.

from vscode-web.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.