This project is no longer maintained. No new issues or pull requests will be accepted. You can still use the source or fork the project to suit your needs.
Here be dragons is an Intellij/Android Studio plugin that let's you annotate your impure Java methods with the @SideEffect
annotation and shows a little dragon icon in the gutter when you call them.
When writing functional style code, isolating impure and pure functions becomes very important. This helps you visually identify which methods are impure when a bunch of methods are being called in a code block.
For a beginner friendly introduction to functional programming in Android, please checkout out my blog series.
Download the plugin jar and select "Install Plugin From Disk" in IntelliJ's plugin preferences.
Add the jcenter repository to your gradle build file if it's not already present:
repositories {
jcenter()
}
Next, add the lib containing the @SideEffect
annotation as a dependency:
dependencies {
compile 'com.anupcowkur:here-be-dragons-annotation:1.0.1'
}
Simpy add the @SideEffect
annotation to any method you want like this:
import com.anupcowkur.herebedragons.SideEffect;
public class Test {
@SideEffect
public void foo() {
// do some impure things
}
}
And when you call the method anywhere, you'll see the dragon icon show up in the IDE gutter.
This project is licensed under the MIT License