Full Code of anupcowkur/here-be-dragons for AI

master 0199360794de cached
15 files
16.3 KB
4.8k tokens
9 symbols
1 requests
Download .txt
Repository: anupcowkur/here-be-dragons
Branch: master
Commit: 0199360794de
Files: 15
Total size: 16.3 KB

Directory structure:
gitextract_ak91bmdd/

├── .gitignore
├── AnnotationLib/
│   ├── build.gradle
│   ├── gradle/
│   │   └── wrapper/
│   │       ├── gradle-wrapper.jar
│   │       └── gradle-wrapper.properties
│   ├── gradlew
│   ├── gradlew.bat
│   ├── settings.gradle
│   └── src/
│       └── main/
│           └── java/
│               └── com/
│                   └── anupcowkur/
│                       └── herebedragons/
│                           └── SideEffect.java
├── IdeaPlugin/
│   ├── resources/
│   │   └── META-INF/
│   │       └── plugin.xml
│   └── src/
│       └── com/
│           └── anupcowkur/
│               └── herebedragons/
│                   ├── AnnotationDetector.java
│                   ├── Constants.java
│                   └── SideEffectLineMarkerProvider.java
├── License.txt
├── README.md
└── here-be-dragons-1.0.0.jar

================================================
FILE CONTENTS
================================================

================================================
FILE: .gitignore
================================================
# Android lib
*.dex
*.class
*bin/
*gen/
*out/
*.gradle/
*build/
*local.properties
*proguard/
*.log
*.navigation/
*captures/
*.iml
*.idea/
*.externalNativeBuild

# Idea Plugin
IdeaPlugin/IdeaPlugin.jar
*target/
*out/



================================================
FILE: AnnotationLib/build.gradle
================================================
group 'com.anupcowkur'
version '1.0.1'

apply plugin: 'java'

sourceCompatibility = 1.7
targetCompatibility = 1.7

repositories {
    mavenCentral()
}

task sourcesJar(type: Jar, dependsOn: classes) {
    classifier = 'sources'
    from sourceSets.main.allSource
}

task javadocJar(type: Jar, dependsOn: javadoc) {
    classifier = 'javadoc'
    from javadoc.destinationDir
}

artifacts {
    archives sourcesJar
    archives javadocJar
}

================================================
FILE: AnnotationLib/gradle/wrapper/gradle-wrapper.properties
================================================
#Sat Mar 04 18:09:38 IST 2017
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-3.1-bin.zip


================================================
FILE: AnnotationLib/gradlew
================================================
#!/usr/bin/env bash

##############################################################################
##
##  Gradle start up script for UN*X
##
##############################################################################

# Attempt to set APP_HOME
# Resolve links: $0 may be a link
PRG="$0"
# Need this for relative symlinks.
while [ -h "$PRG" ] ; do
    ls=`ls -ld "$PRG"`
    link=`expr "$ls" : '.*-> \(.*\)$'`
    if expr "$link" : '/.*' > /dev/null; then
        PRG="$link"
    else
        PRG=`dirname "$PRG"`"/$link"
    fi
done
SAVED="`pwd`"
cd "`dirname \"$PRG\"`/" >/dev/null
APP_HOME="`pwd -P`"
cd "$SAVED" >/dev/null

APP_NAME="Gradle"
APP_BASE_NAME=`basename "$0"`

# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
DEFAULT_JVM_OPTS=""

# Use the maximum available, or set MAX_FD != -1 to use that value.
MAX_FD="maximum"

warn ( ) {
    echo "$*"
}

die ( ) {
    echo
    echo "$*"
    echo
    exit 1
}

# OS specific support (must be 'true' or 'false').
cygwin=false
msys=false
darwin=false
nonstop=false
case "`uname`" in
  CYGWIN* )
    cygwin=true
    ;;
  Darwin* )
    darwin=true
    ;;
  MINGW* )
    msys=true
    ;;
  NONSTOP* )
    nonstop=true
    ;;
esac

CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar

# Determine the Java command to use to start the JVM.
if [ -n "$JAVA_HOME" ] ; then
    if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
        # IBM's JDK on AIX uses strange locations for the executables
        JAVACMD="$JAVA_HOME/jre/sh/java"
    else
        JAVACMD="$JAVA_HOME/bin/java"
    fi
    if [ ! -x "$JAVACMD" ] ; then
        die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME

Please set the JAVA_HOME variable in your environment to match the
location of your Java installation."
    fi
else
    JAVACMD="java"
    which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.

Please set the JAVA_HOME variable in your environment to match the
location of your Java installation."
fi

# Increase the maximum file descriptors if we can.
if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then
    MAX_FD_LIMIT=`ulimit -H -n`
    if [ $? -eq 0 ] ; then
        if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then
            MAX_FD="$MAX_FD_LIMIT"
        fi
        ulimit -n $MAX_FD
        if [ $? -ne 0 ] ; then
            warn "Could not set maximum file descriptor limit: $MAX_FD"
        fi
    else
        warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT"
    fi
fi

# For Darwin, add options to specify how the application appears in the dock
if $darwin; then
    GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\""
fi

# For Cygwin, switch paths to Windows format before running java
if $cygwin ; then
    APP_HOME=`cygpath --path --mixed "$APP_HOME"`
    CLASSPATH=`cygpath --path --mixed "$CLASSPATH"`
    JAVACMD=`cygpath --unix "$JAVACMD"`

    # We build the pattern for arguments to be converted via cygpath
    ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null`
    SEP=""
    for dir in $ROOTDIRSRAW ; do
        ROOTDIRS="$ROOTDIRS$SEP$dir"
        SEP="|"
    done
    OURCYGPATTERN="(^($ROOTDIRS))"
    # Add a user-defined pattern to the cygpath arguments
    if [ "$GRADLE_CYGPATTERN" != "" ] ; then
        OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)"
    fi
    # Now convert the arguments - kludge to limit ourselves to /bin/sh
    i=0
    for arg in "$@" ; do
        CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -`
        CHECK2=`echo "$arg"|egrep -c "^-"`                                 ### Determine if an option

        if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then                    ### Added a condition
            eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"`
        else
            eval `echo args$i`="\"$arg\""
        fi
        i=$((i+1))
    done
    case $i in
        (0) set -- ;;
        (1) set -- "$args0" ;;
        (2) set -- "$args0" "$args1" ;;
        (3) set -- "$args0" "$args1" "$args2" ;;
        (4) set -- "$args0" "$args1" "$args2" "$args3" ;;
        (5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;;
        (6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;;
        (7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;;
        (8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;;
        (9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;;
    esac
fi

# Split up the JVM_OPTS And GRADLE_OPTS values into an array, following the shell quoting and substitution rules
function splitJvmOpts() {
    JVM_OPTS=("$@")
}
eval splitJvmOpts $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS
JVM_OPTS[${#JVM_OPTS[*]}]="-Dorg.gradle.appname=$APP_BASE_NAME"

# by default we should be in the correct project dir, but when run from Finder on Mac, the cwd is wrong
if [[ "$(uname)" == "Darwin" ]] && [[ "$HOME" == "$PWD" ]]; then
  cd "$(dirname "$0")"
fi

exec "$JAVACMD" "${JVM_OPTS[@]}" -classpath "$CLASSPATH" org.gradle.wrapper.GradleWrapperMain "$@"


================================================
FILE: AnnotationLib/gradlew.bat
================================================
@if "%DEBUG%" == "" @echo off
@rem ##########################################################################
@rem
@rem  Gradle startup script for Windows
@rem
@rem ##########################################################################

@rem Set local scope for the variables with windows NT shell
if "%OS%"=="Windows_NT" setlocal

set DIRNAME=%~dp0
if "%DIRNAME%" == "" set DIRNAME=.
set APP_BASE_NAME=%~n0
set APP_HOME=%DIRNAME%

@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
set DEFAULT_JVM_OPTS=

@rem Find java.exe
if defined JAVA_HOME goto findJavaFromJavaHome

set JAVA_EXE=java.exe
%JAVA_EXE% -version >NUL 2>&1
if "%ERRORLEVEL%" == "0" goto init

echo.
echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
echo.
echo Please set the JAVA_HOME variable in your environment to match the
echo location of your Java installation.

goto fail

:findJavaFromJavaHome
set JAVA_HOME=%JAVA_HOME:"=%
set JAVA_EXE=%JAVA_HOME%/bin/java.exe

if exist "%JAVA_EXE%" goto init

echo.
echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
echo.
echo Please set the JAVA_HOME variable in your environment to match the
echo location of your Java installation.

goto fail

:init
@rem Get command-line arguments, handling Windows variants

if not "%OS%" == "Windows_NT" goto win9xME_args

:win9xME_args
@rem Slurp the command line arguments.
set CMD_LINE_ARGS=
set _SKIP=2

:win9xME_args_slurp
if "x%~1" == "x" goto execute

set CMD_LINE_ARGS=%*

:execute
@rem Setup the command line

set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar

@rem Execute Gradle
"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS%

:end
@rem End local scope for the variables with windows NT shell
if "%ERRORLEVEL%"=="0" goto mainEnd

:fail
rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
rem the _cmd.exe /c_ return code!
if  not "" == "%GRADLE_EXIT_CONSOLE%" exit 1
exit /b 1

:mainEnd
if "%OS%"=="Windows_NT" endlocal

:omega


================================================
FILE: AnnotationLib/settings.gradle
================================================
rootProject.name = 'herebedragons'



================================================
FILE: AnnotationLib/src/main/java/com/anupcowkur/herebedragons/SideEffect.java
================================================
package com.anupcowkur.herebedragons;

import java.lang.annotation.Documented;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;

import static java.lang.annotation.ElementType.METHOD;
import static java.lang.annotation.RetentionPolicy.SOURCE;

/**
 * Annotation to indicate Impure/Side effecting methods. HereBeDragons plugin uses
 * this annotation to show a dragon icon in the IDE gutter.
 */
@Documented
@Target(METHOD)
@Retention(SOURCE)
public @interface SideEffect {
}

================================================
FILE: IdeaPlugin/resources/META-INF/plugin.xml
================================================
<idea-plugin version="2">
  <id>com.anupcowkur.herebedragons</id>
  <name>Here Be Dragons</name>
  <version>1.0.1</version>
  <vendor email="anupcowkur89@gmail.com" url="https://github.com/anupcowkur/SideEffects">Side Effects</vendor>

  <description><![CDATA[
      Annotate your methods with @SideEffect and let the little dragon show you when you're calling an impure method<br/>
    ]]></description>

  <change-notes><![CDATA[
     1.0.1: Make compatible with Java 7.<br/>
    ]]>
  </change-notes>

  <!-- please see http://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/build_number_ranges.html for description -->
  <idea-version since-build="145.0"/>

  <!-- please see http://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/plugin_compatibility.html
       on how to target different products -->
  <!-- uncomment to enable plugin in all products
  <depends>com.intellij.modules.lang</depends>
  -->

  <extensions defaultExtensionNs="com.intellij">
    <codeInsight.lineMarkerProvider language="JAVA"
                                    implementationClass="com.anupcowkur.herebedragons.SideEffectLineMarkerProvider"/>
  </extensions>
</idea-plugin>

================================================
FILE: IdeaPlugin/src/com/anupcowkur/herebedragons/AnnotationDetector.java
================================================
package com.anupcowkur.herebedragons;

import com.intellij.codeInsight.AnnotationUtil;
import com.intellij.psi.PsiAnnotation;
import com.intellij.psi.PsiElement;
import com.intellij.psi.PsiModifierList;
import com.intellij.psi.PsiModifierListOwner;

public final class AnnotationDetector {

    private AnnotationDetector() {
    }

    public static boolean hasAnnotation(PsiElement element, String annotationName) {
        return findAnnotation(element, annotationName) != null;
    }

    static PsiAnnotation findAnnotation(PsiElement element, String annotationName) {
        if (element instanceof PsiModifierListOwner) {
            PsiModifierListOwner listOwner = (PsiModifierListOwner) element;
            PsiModifierList modifierList = listOwner.getModifierList();

            if (modifierList != null) {
                for (PsiAnnotation psiAnnotation : modifierList.getAnnotations()) {
                    if (annotationName.equals(psiAnnotation.getQualifiedName())) {
                        return psiAnnotation;
                    }
                }
            }

        }
        return null;
    }
}


================================================
FILE: IdeaPlugin/src/com/anupcowkur/herebedragons/Constants.java
================================================
package com.anupcowkur.herebedragons;

public final class Constants {
    private Constants() {
    }

    public static final String CLASS_SIDE_EFFECT = "com.anupcowkur.herebedragons.SideEffect";
}


================================================
FILE: IdeaPlugin/src/com/anupcowkur/herebedragons/SideEffectLineMarkerProvider.java
================================================
package com.anupcowkur.herebedragons;

import com.intellij.codeInsight.TargetElementUtil;
import com.intellij.codeInsight.daemon.LineMarkerInfo;
import com.intellij.codeInsight.daemon.LineMarkerProvider;
import com.intellij.openapi.util.IconLoader;
import com.intellij.psi.*;

import java.util.Collection;
import java.util.List;
import java.util.function.Consumer;
import javax.swing.Icon;

import com.intellij.psi.search.searches.MethodReferencesSearch;
import com.intellij.util.Processor;
import com.intellij.util.Query;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;

import static com.anupcowkur.herebedragons.AnnotationDetector.hasAnnotation;
import static com.anupcowkur.herebedragons.Constants.CLASS_SIDE_EFFECT;
import static com.intellij.codeHighlighting.Pass.UPDATE_ALL;
import static com.intellij.openapi.editor.markup.GutterIconRenderer.Alignment.LEFT;

public class SideEffectLineMarkerProvider implements LineMarkerProvider {
    private static final Icon ICON = IconLoader.getIcon("/icons/dragon.png");

    /**
     * @return a {@link com.intellij.codeInsight.daemon.GutterIconNavigationHandler} if the element
     * is a PsiMethod annotated with @SideEffect.
     */
    @Nullable
    @Override
    public LineMarkerInfo getLineMarkerInfo(@NotNull final PsiElement element) {
        // Check if expression
        if (element instanceof PsiReferenceExpression) {
            PsiReferenceExpression referenceExpression = (PsiReferenceExpression) element;

            // Check if expression has method
            if (referenceExpression.resolve() instanceof PsiMethod) {
                PsiMethod method = (PsiMethod) referenceExpression.resolve();

                // Does it have a @SideEffect?
                if (hasAnnotation(method, CLASS_SIDE_EFFECT)) {
                    return new LineMarkerInfo<PsiElement>(element, element.getTextRange(), ICON,
                            UPDATE_ALL, null, null, LEFT);
                }
            }
        }

        return null;
    }

    @Override
    public void collectSlowLineMarkers(@NotNull List<PsiElement> psiElements,
                                       @NotNull Collection<LineMarkerInfo> lineMarkerInfos) {

    }
}

================================================
FILE: License.txt
================================================
Copyright (c) 2017 Anup Cowkur

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated
documentation files (the "Software"), to deal in the Software without restriction, including without limitation the
rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the
Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.


================================================
FILE: README.md
================================================
# Deprecated
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
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.

![How the plugin works](here-be-dragons.gif)

# Why would I want to do this?
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](https://medium.freecodecamp.com/functional-programming-for-android-developers-part-1-a58d40d6e742#.z2eewm52o).

# Installation
## Install the plugin
[Download](https://github.com/anupcowkur/here-be-dragons/releases/download/v1.0.1/here-be-dragons-1.0.1.jar) the plugin jar and select "Install Plugin From Disk" in IntelliJ's plugin preferences.

## Add the annotation library
Add the jcenter repository to your gradle build file if it's not already present:

```groovy
repositories {
    jcenter()
}
```

Next, add the lib containing the `@SideEffect` annotation as a dependency:

```groovy
dependencies {
    compile 'com.anupcowkur:here-be-dragons-annotation:1.0.1'
}
```

# Usage
Simpy add the `@SideEffect` annotation to any method you want like this:

```java
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.

# License
This project is licensed under the [MIT License](https://github.com/anupcowkur/here-be-dragons/blob/master/License.txt)

Download .txt
gitextract_ak91bmdd/

├── .gitignore
├── AnnotationLib/
│   ├── build.gradle
│   ├── gradle/
│   │   └── wrapper/
│   │       ├── gradle-wrapper.jar
│   │       └── gradle-wrapper.properties
│   ├── gradlew
│   ├── gradlew.bat
│   ├── settings.gradle
│   └── src/
│       └── main/
│           └── java/
│               └── com/
│                   └── anupcowkur/
│                       └── herebedragons/
│                           └── SideEffect.java
├── IdeaPlugin/
│   ├── resources/
│   │   └── META-INF/
│   │       └── plugin.xml
│   └── src/
│       └── com/
│           └── anupcowkur/
│               └── herebedragons/
│                   ├── AnnotationDetector.java
│                   ├── Constants.java
│                   └── SideEffectLineMarkerProvider.java
├── License.txt
├── README.md
└── here-be-dragons-1.0.0.jar
Download .txt
SYMBOL INDEX (9 symbols across 3 files)

FILE: IdeaPlugin/src/com/anupcowkur/herebedragons/AnnotationDetector.java
  class AnnotationDetector (line 9) | public final class AnnotationDetector {
    method AnnotationDetector (line 11) | private AnnotationDetector() {
    method hasAnnotation (line 14) | public static boolean hasAnnotation(PsiElement element, String annotat...
    method findAnnotation (line 18) | static PsiAnnotation findAnnotation(PsiElement element, String annotat...

FILE: IdeaPlugin/src/com/anupcowkur/herebedragons/Constants.java
  class Constants (line 3) | public final class Constants {
    method Constants (line 4) | private Constants() {

FILE: IdeaPlugin/src/com/anupcowkur/herebedragons/SideEffectLineMarkerProvider.java
  class SideEffectLineMarkerProvider (line 25) | public class SideEffectLineMarkerProvider implements LineMarkerProvider {
    method getLineMarkerInfo (line 32) | @Nullable
    method collectSlowLineMarkers (line 54) | @Override
Condensed preview — 15 files, each showing path, character count, and a content snippet. Download the .json file or copy for the full structured content (18K chars).
[
  {
    "path": ".gitignore",
    "chars": 217,
    "preview": "# Android lib\n*.dex\n*.class\n*bin/\n*gen/\n*out/\n*.gradle/\n*build/\n*local.properties\n*proguard/\n*.log\n*.navigation/\n*captur"
  },
  {
    "path": "AnnotationLib/build.gradle",
    "chars": 438,
    "preview": "group 'com.anupcowkur'\nversion '1.0.1'\n\napply plugin: 'java'\n\nsourceCompatibility = 1.7\ntargetCompatibility = 1.7\n\nrepos"
  },
  {
    "path": "AnnotationLib/gradle/wrapper/gradle-wrapper.properties",
    "chars": 230,
    "preview": "#Sat Mar 04 18:09:38 IST 2017\ndistributionBase=GRADLE_USER_HOME\ndistributionPath=wrapper/dists\nzipStoreBase=GRADLE_USER_"
  },
  {
    "path": "AnnotationLib/gradlew",
    "chars": 5242,
    "preview": "#!/usr/bin/env bash\n\n##############################################################################\n##\n##  Gradle start "
  },
  {
    "path": "AnnotationLib/gradlew.bat",
    "chars": 2260,
    "preview": "@if \"%DEBUG%\" == \"\" @echo off\r\n@rem ##########################################################################\r\n@rem\r\n@r"
  },
  {
    "path": "AnnotationLib/settings.gradle",
    "chars": 36,
    "preview": "rootProject.name = 'herebedragons'\n\n"
  },
  {
    "path": "AnnotationLib/src/main/java/com/anupcowkur/herebedragons/SideEffect.java",
    "chars": 500,
    "preview": "package com.anupcowkur.herebedragons;\n\nimport java.lang.annotation.Documented;\nimport java.lang.annotation.Retention;\nim"
  },
  {
    "path": "IdeaPlugin/resources/META-INF/plugin.xml",
    "chars": 1183,
    "preview": "<idea-plugin version=\"2\">\n  <id>com.anupcowkur.herebedragons</id>\n  <name>Here Be Dragons</name>\n  <version>1.0.1</versi"
  },
  {
    "path": "IdeaPlugin/src/com/anupcowkur/herebedragons/AnnotationDetector.java",
    "chars": 1126,
    "preview": "package com.anupcowkur.herebedragons;\n\nimport com.intellij.codeInsight.AnnotationUtil;\nimport com.intellij.psi.PsiAnnota"
  },
  {
    "path": "IdeaPlugin/src/com/anupcowkur/herebedragons/Constants.java",
    "chars": 199,
    "preview": "package com.anupcowkur.herebedragons;\n\npublic final class Constants {\n    private Constants() {\n    }\n\n    public static"
  },
  {
    "path": "IdeaPlugin/src/com/anupcowkur/herebedragons/SideEffectLineMarkerProvider.java",
    "chars": 2239,
    "preview": "package com.anupcowkur.herebedragons;\n\nimport com.intellij.codeInsight.TargetElementUtil;\nimport com.intellij.codeInsigh"
  },
  {
    "path": "License.txt",
    "chars": 1055,
    "preview": "Copyright (c) 2017 Anup Cowkur\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this sof"
  },
  {
    "path": "README.md",
    "chars": 1937,
    "preview": "# Deprecated\nThis project is no longer maintained. No new issues or pull requests will be accepted. You can still use th"
  }
]

// ... and 2 more files (download for full content)

About this extraction

This page contains the full source code of the anupcowkur/here-be-dragons GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 15 files (16.3 KB), approximately 4.8k tokens, and a symbol index with 9 extracted functions, classes, methods, constants, and types. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.

Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.

Copied to clipboard!