Class: Jade::LSP::Server
- Inherits:
-
Object
- Object
- Jade::LSP::Server
- Defined in:
- lib/jade/lsp/server.rb
Instance Method Summary collapse
-
#initialize(input: $stdin, output: $stdout) ⇒ Server
constructor
A new instance of Server.
- #run ⇒ Object
Constructor Details
#initialize(input: $stdin, output: $stdout) ⇒ Server
Returns a new instance of Server.
6 7 8 9 10 11 12 |
# File 'lib/jade/lsp/server.rb', line 6 def initialize(input: $stdin, output: $stdout) @input = input @output = output @input.binmode @output.binmode @output.sync = true end |