Fabian
Fabian

Reputation: 1224

Finding bugs in Lift

I know some scala and started to learn lift. As long as it works it is really nice. But i have big problems to find Bugs. (I'm dyslexic and most times don't see my typing errors.)

Are there some tips how to find bugs in lift?

(I think this question should already be answered somewhere but i didn't find anything on the net)

Upvotes: 2

Views: 168

Answers (1)

pr1001
pr1001

Reputation: 21962

An IDE (ENSIME, IntelliJ, etc) with the Scala and Lift libraries should be able to catch many errors and suggest correct spellings via auto-complete. Likewise a continuous compilation of your code (e.g. ~compile in sbt) is a good way to catch errors and doesn't require using any specific IDE.

Upvotes: 2

Related Questions