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.

-1 votes
1 answer
202 views

How does a multi compiler programming language receive editor support?

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,017
17 votes
5 answers
2k views

What are some techniques for faster, fine-grained incremental compilation and static analysis?

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,049
10 votes
2 answers
559 views

Can you represent a language with a group with a small/simple generator set?

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
262 views

Techniques for resilient parsing in the face of mismatched brackets?

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
170 views

Supporting a statically-typed language in an IDE?

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,017