Sha256: 8f5460a3b3bbda3dd8dfb58b5ffd99e8abd23564bddf8cc5070503dbce422f3d
Contents?: true
Size: 1.07 KB
Versions: 1
Compression:
Stored size: 1.07 KB
Contents
# typed: strict # frozen_string_literal: true # If YARP is in the bundle, we have to remove it from the $LOAD_PATH because it contains a default export named `prism` # that will conflict with the actual Prism gem yarp_require_paths = Gem.loaded_specs["yarp"]&.full_require_paths $LOAD_PATH.delete_if { |path| yarp_require_paths.include?(path) } if yarp_require_paths require "sorbet-runtime" # Set Bundler's UI level to silent as soon as possible to prevent any prints to STDOUT require "bundler" Bundler.ui.level = :silent require "uri" require "cgi" require "set" require "prism" require "prism/visitor" require "language_server-protocol" require "ruby-lsp" require "ruby_lsp/base_server" require "ruby_indexer/ruby_indexer" require "core_ext/uri" require "ruby_lsp/utils" require "ruby_lsp/parameter_scope" require "ruby_lsp/global_state" require "ruby_lsp/server" require "ruby_lsp/requests" require "ruby_lsp/response_builders" require "ruby_lsp/document" require "ruby_lsp/ruby_document" require "ruby_lsp/store" require "ruby_lsp/addon" require "ruby_lsp/requests/support/rubocop_runner"
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
ruby-lsp-0.15.0 | lib/ruby_lsp/internal.rb |