Skip to main content

Questions tagged [ide]

Use this tag for questions about integrating a programming language with an Integrated Development Environment, or constructing an IDE for a language.

Filter by
Sorted by
Tagged with
1 vote
2 answers
321 views

In a specific language's build system (or package manager), checking third party sources (whether local or from a package registry) can be done in different ways. NPM forces libraries to transpile TS/...
Sweax Izone's user avatar
0 votes
2 answers
395 views

Wondering how does a language that indirectly compiles to languages of existing systems or software receive proper type hints, autocompletion, diagnostics, and syntax highlighting for customized file ...
Hydroper's user avatar
  • 1,047
18 votes
5 answers
3k views

An incremental compiler is one which only needs to recompile the parts of a program which changed since the last output, as opposed to a batch compiler which must re-compile everything. Incremental ...
tarzh's user avatar
  • 4,509
11 votes
2 answers
672 views

I'm wondering whether its possible to construct a group where the elements are all possible valid programs, with a small or simple generator set. That way you could have a series of operations you can ...
debater-coder's user avatar
7 votes
1 answer
417 views

Suppose you want to build an IDE-grade parser for a language with highly uniform and nestable syntax (e.g. Lisp). Without a lot of "special" constructs like top-level functions, you can't ...
Ken Micklas's user avatar
4 votes
1 answer
210 views

I'm almost finishing my open-source language's verifier. It performs parsing and verification, which ensures a set of programs are valid both syntatically and semantically at compile-time. To start ...
Hydroper's user avatar
  • 1,047