How do they color code source code in an IDE. What is the basic indea behind it? What are they tokens they look for?

link|improve this question

feedback

3 Answers

up vote 1 down vote accepted

The most common approach that I know of is the use of single- or multi-line regexes, depending on language syntax.

For IDEs with syntax files, the IDE compiles the file into a regex on first load of relevant file.

link|improve this answer
feedback

Usually doing simple lexing on the source code, e.h. with regexp-s.

Sometimes interacting with the compiler, or some other syntactic parser, to provide more useful (semantic) information.

The syntactic colorization is always dependent upon the language (i.e. the file extension).

link|improve this answer
feedback

You either parse the language completely, or just look for known patterns with e.g. regexes. There is no single method for all languages, each requires its own set of rules.

Parsing usually produces better quality, but regex rules are easier to produce.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.