This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import com.intellij.ExtensionPoints | |
import com.intellij.lang.injection.MultiHostInjector | |
import com.intellij.lang.injection.MultiHostRegistrar | |
import com.intellij.openapi.extensions.ExtensionPoint | |
import com.intellij.openapi.extensions.ExtensionPointName | |
import com.intellij.openapi.extensions.Extensions | |
import com.intellij.openapi.util.TextRange | |
import com.intellij.psi.PsiClass | |
import com.intellij.psi.PsiClassObjectAccessExpression | |
import com.intellij.psi.PsiElement |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0"?> | |
<project default="compile" name="Soot Build File"> | |
<property file="ant.settings"/> | |
<target name="settings"> | |
<fail | |
message="Please copy ant.settings.template to ant.settings, and set the variables in it." | |
unless="jasmin.jar" | |
/> | |
</target> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
#include <algorithm> | |
#include <queue> | |
#include <cmath> | |
using namespace std; | |
struct Node{ | |
int x; | |
int y; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
+-----------------------------------------------+ | |
| XBMC PHP Library - (C) Kai Gohegan, 2010 | | |
+-----------------------------------------------+ | |
A PHP library for interacting with XBMC using | |
JSON-RPC and XBMC's HTTP-API. Inspiration was |
NewerOlder