├── .eslintrc.json ├── .github ├── dependabot.yml └── workflows │ ├── release.yaml │ └── vscode.yml ├── .gitignore ├── .prettierignore ├── .prettierrc.js ├── .vscode ├── launch.json └── settings.json ├── .vscodeignore ├── README.md ├── development.md ├── package.json ├── sandbox └── test.rb ├── src ├── extension.ts └── test │ ├── runTest.ts │ ├── simpleProgram │ ├── .ruby-version │ ├── Gemfile │ ├── increment.rb │ ├── rbs_collection.yaml │ ├── student.rb │ └── typeprof.conf.json │ └── suite │ ├── extension.test.ts │ └── index.ts └── tsconfig.json /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/vscode-typeprof/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/vscode-typeprof/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/vscode-typeprof/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.github/workflows/vscode.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/vscode-typeprof/HEAD/.github/workflows/vscode.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/vscode-typeprof/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/vscode-typeprof/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/vscode-typeprof/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/vscode-typeprof/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/vscode-typeprof/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/vscode-typeprof/HEAD/.vscodeignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/vscode-typeprof/HEAD/README.md -------------------------------------------------------------------------------- /development.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/vscode-typeprof/HEAD/development.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/vscode-typeprof/HEAD/package.json -------------------------------------------------------------------------------- /sandbox/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/vscode-typeprof/HEAD/sandbox/test.rb -------------------------------------------------------------------------------- /src/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/vscode-typeprof/HEAD/src/extension.ts -------------------------------------------------------------------------------- /src/test/runTest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/vscode-typeprof/HEAD/src/test/runTest.ts -------------------------------------------------------------------------------- /src/test/simpleProgram/.ruby-version: -------------------------------------------------------------------------------- 1 | 3.3.6 2 | -------------------------------------------------------------------------------- /src/test/simpleProgram/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/vscode-typeprof/HEAD/src/test/simpleProgram/Gemfile -------------------------------------------------------------------------------- /src/test/simpleProgram/increment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/vscode-typeprof/HEAD/src/test/simpleProgram/increment.rb -------------------------------------------------------------------------------- /src/test/simpleProgram/rbs_collection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/vscode-typeprof/HEAD/src/test/simpleProgram/rbs_collection.yaml -------------------------------------------------------------------------------- /src/test/simpleProgram/student.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/vscode-typeprof/HEAD/src/test/simpleProgram/student.rb -------------------------------------------------------------------------------- /src/test/simpleProgram/typeprof.conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/vscode-typeprof/HEAD/src/test/simpleProgram/typeprof.conf.json -------------------------------------------------------------------------------- /src/test/suite/extension.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/vscode-typeprof/HEAD/src/test/suite/extension.test.ts -------------------------------------------------------------------------------- /src/test/suite/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/vscode-typeprof/HEAD/src/test/suite/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/vscode-typeprof/HEAD/tsconfig.json --------------------------------------------------------------------------------