Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
package spp.jetbrains.marker.js

import spp.jetbrains.marker.impl.*
import spp.jetbrains.marker.js.service.*

/**
* Provides JavaScript support for the Marker API.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package spp.jetbrains.marker.js
package spp.jetbrains.marker.js.detect

import com.intellij.openapi.project.Project
import spp.jetbrains.marker.js.psi.endpoint.ExpressEndpoint
import spp.jetbrains.marker.js.detect.endpoint.ExpressEndpoint
import spp.jetbrains.marker.source.info.EndpointDetector
import spp.jetbrains.marker.source.info.EndpointDetector.EndpointNameDeterminer

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package spp.jetbrains.marker.js
package spp.jetbrains.marker.js.detect

import com.intellij.openapi.project.Project
import spp.jetbrains.marker.source.info.LoggerDetector
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package spp.jetbrains.marker.js.psi.endpoint
package spp.jetbrains.marker.js.detect.endpoint

import com.intellij.lang.javascript.psi.*
import com.intellij.openapi.application.ApplicationManager
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package spp.jetbrains.marker.js
package spp.jetbrains.marker.js.presentation

import com.intellij.ide.projectView.PresentationData
import com.intellij.openapi.editor.DefaultLanguageHighlighterColors
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package spp.jetbrains.marker.js
package spp.jetbrains.marker.js.presentation

import com.intellij.icons.AllIcons
import com.intellij.ide.projectView.PresentationData
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package spp.jetbrains.marker.js
package spp.jetbrains.marker.js.service

import com.intellij.psi.PsiElement
import spp.jetbrains.marker.IArtifactConditionService
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package spp.jetbrains.marker.js
package spp.jetbrains.marker.js.service

import com.intellij.psi.PsiElement
import com.intellij.psi.PsiNameIdentifierOwner
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package spp.jetbrains.marker.js
package spp.jetbrains.marker.js.service

import com.intellij.lang.javascript.psi.*
import com.intellij.lang.javascript.psi.ecmal4.JSClass
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package spp.jetbrains.marker.js
package spp.jetbrains.marker.js.service

import com.intellij.lang.javascript.psi.JSFunction
import com.intellij.lang.javascript.psi.JSVariable
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package spp.jetbrains.marker.js
package spp.jetbrains.marker.js.service

import com.intellij.lang.javascript.psi.JSExpression
import com.intellij.lang.javascript.psi.JSFunction
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ import org.jetbrains.uast.toUElementOfType
import spp.jetbrains.marker.SourceMarker
import spp.jetbrains.marker.impl.ArtifactCreationService
import spp.jetbrains.marker.plugin.SourceLineMarkerProvider
import spp.jetbrains.marker.source.JVMMarkerUtils
import spp.jetbrains.marker.jvm.service.utils.JVMMarkerUtils
import spp.jetbrains.marker.source.SourceFileMarker.Companion.SUPPORTED_FILE_TYPES
import spp.jetbrains.marker.source.mark.api.SourceMark
import spp.jetbrains.marker.source.mark.api.key.SourceKey
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ package spp.jetbrains.marker.jvm

import spp.jetbrains.marker.SourceMarkerUtils
import spp.jetbrains.marker.impl.*
import spp.jetbrains.marker.jvm.service.*

/**
* todo: description.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ import org.jetbrains.uast.UMethod
import org.jetbrains.uast.toUElement
import spp.jetbrains.marker.SourceMarker
import spp.jetbrains.marker.plugin.SourceInlayHintProvider
import spp.jetbrains.marker.source.JVMMarkerUtils
import spp.jetbrains.marker.jvm.service.utils.JVMMarkerUtils
import spp.jetbrains.marker.source.mark.inlay.InlayMark
import spp.jetbrains.marker.source.mark.inlay.config.InlayMarkVirtualText

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,16 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package spp.jetbrains.marker.jvm
package spp.jetbrains.marker.jvm.detect

import com.intellij.openapi.project.Project
import io.vertx.core.CompositeFuture
import io.vertx.core.Future
import io.vertx.core.Promise
import org.jetbrains.uast.UMethod
import spp.jetbrains.marker.jvm.JVMEndpointDetector.JVMEndpointNameDeterminer
import spp.jetbrains.marker.jvm.psi.endpoint.SkywalkingTraceEndpoint
import spp.jetbrains.marker.jvm.psi.endpoint.SpringMVCEndpoint
import spp.jetbrains.marker.jvm.detect.JVMEndpointDetector.JVMEndpointNameDeterminer
import spp.jetbrains.marker.jvm.detect.endpoint.SkywalkingTraceEndpoint
import spp.jetbrains.marker.jvm.detect.endpoint.SpringMVCEndpoint
import spp.jetbrains.marker.source.info.EndpointDetector
import java.util.*

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package spp.jetbrains.marker.jvm.psi
package spp.jetbrains.marker.jvm.detect

import com.intellij.openapi.application.ApplicationManager
import com.intellij.openapi.diagnostic.logger
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package spp.jetbrains.marker.jvm.psi.endpoint
package spp.jetbrains.marker.jvm.detect.endpoint

import com.intellij.openapi.application.ApplicationManager
import com.intellij.openapi.util.Computable
Expand All @@ -23,7 +23,7 @@ import io.vertx.core.Promise
import org.jetbrains.uast.UMethod
import org.jetbrains.uast.expressions.UInjectionHost
import org.jetbrains.uast.toUElementOfType
import spp.jetbrains.marker.jvm.JVMEndpointDetector.JVMEndpointNameDeterminer
import spp.jetbrains.marker.jvm.detect.JVMEndpointDetector.JVMEndpointNameDeterminer
import spp.jetbrains.marker.source.info.EndpointDetector.DetectedEndpoint
import spp.jetbrains.marker.source.mark.guide.GuideMark
import java.util.*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package spp.jetbrains.marker.jvm.psi.endpoint
package spp.jetbrains.marker.jvm.detect.endpoint

import com.intellij.lang.Language
import com.intellij.openapi.application.ApplicationManager
Expand All @@ -29,10 +29,9 @@ import org.jetbrains.uast.kotlin.KotlinStringULiteralExpression
import org.jetbrains.uast.kotlin.KotlinUQualifiedReferenceExpression
import org.jetbrains.uast.kotlin.KotlinUSimpleReferenceExpression
import org.joor.Reflect
import spp.jetbrains.marker.jvm.JVMEndpointDetector.JVMEndpointNameDeterminer
import spp.jetbrains.marker.jvm.detect.JVMEndpointDetector.JVMEndpointNameDeterminer
import spp.jetbrains.marker.source.info.EndpointDetector.DetectedEndpoint
import spp.jetbrains.marker.source.mark.guide.GuideMark
import spp.jetbrains.marker.source.mark.guide.MethodGuideMark
import java.util.*

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package spp.jetbrains.marker.jvm
package spp.jetbrains.marker.jvm.presentation

import com.intellij.icons.AllIcons
import com.intellij.ide.projectView.PresentationData
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package spp.jetbrains.marker.jvm
package spp.jetbrains.marker.jvm.service

import com.intellij.debugger.engine.evaluation.TextWithImportsImpl
import com.intellij.debugger.impl.DebuggerUtilsEx
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package spp.jetbrains.marker.jvm
package spp.jetbrains.marker.jvm.service

import com.intellij.psi.PsiElement
import com.intellij.psi.PsiNameIdentifierOwner
import com.intellij.psi.PsiStatement
import spp.jetbrains.marker.IArtifactCreationService
import spp.jetbrains.marker.SourceMarkerUtils
import spp.jetbrains.marker.source.JVMMarkerUtils
import spp.jetbrains.marker.jvm.service.utils.JVMMarkerUtils
import spp.jetbrains.marker.source.SourceFileMarker
import spp.jetbrains.marker.source.mark.api.SourceMark
import spp.jetbrains.marker.source.mark.api.key.SourceKey
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package spp.jetbrains.marker.jvm
package spp.jetbrains.marker.jvm.service

import com.intellij.openapi.diagnostic.logger
import com.intellij.openapi.project.Project
Expand All @@ -23,7 +23,7 @@ import com.intellij.psi.util.ClassUtil
import org.jetbrains.uast.*
import spp.jetbrains.marker.IArtifactNamingService
import spp.jetbrains.marker.SourceMarker
import spp.jetbrains.marker.source.JVMMarkerUtils
import spp.jetbrains.marker.jvm.service.utils.JVMMarkerUtils
import spp.jetbrains.marker.source.mark.api.SourceMark
import spp.protocol.artifact.ArtifactLanguage
import spp.protocol.artifact.ArtifactNameUtils
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package spp.jetbrains.marker.jvm
package spp.jetbrains.marker.jvm.service

import com.intellij.psi.*
import com.intellij.psi.scope.processor.VariablesProcessor
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package spp.jetbrains.marker.jvm
package spp.jetbrains.marker.jvm.service

import com.intellij.psi.PsiClass
import com.intellij.psi.PsiElement
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package spp.jetbrains.marker.source
package spp.jetbrains.marker.jvm.service.utils

import com.intellij.lang.jvm.util.JvmClassUtil
import com.intellij.openapi.diagnostic.logger
Expand All @@ -23,6 +23,7 @@ import com.intellij.psi.util.PsiUtil
import org.jetbrains.uast.*
import org.joor.Reflect
import spp.jetbrains.marker.SourceMarkerUtils
import spp.jetbrains.marker.source.SourceFileMarker
import spp.jetbrains.marker.source.mark.api.SourceMark
import spp.jetbrains.marker.source.mark.api.key.SourceKey
import spp.jetbrains.marker.source.mark.gutter.ClassGutterMark
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ import org.jetbrains.kotlin.psi.KtFunction
import org.jetbrains.kotlin.psi.psiUtil.findDescendantOfType
import org.jetbrains.plugins.groovy.lang.psi.GroovyFile
import spp.jetbrains.marker.SourceMarker
import spp.jetbrains.marker.jvm.service.JVMArtifactNamingService
import spp.jetbrains.marker.source.SourceFileMarker
import spp.protocol.artifact.ArtifactType

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ import com.intellij.testFramework.fixtures.LightJavaCodeInsightFixtureTestCase
import com.intellij.xdebugger.impl.breakpoints.XExpressionImpl
import org.intellij.lang.annotations.Language
import spp.jetbrains.marker.impl.ArtifactConditionService
import spp.jetbrains.marker.jvm.service.JVMArtifactConditionService

class JVMConditionParserTest : LightJavaCodeInsightFixtureTestCase() {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package spp.jetbrains.marker.jvm.psi
package spp.jetbrains.marker.jvm.detect

import com.intellij.openapi.application.ApplicationManager
import com.intellij.openapi.module.Module
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package spp.jetbrains.marker.jvm.psi.endpoint
package spp.jetbrains.marker.jvm.detect.endpoint

import com.intellij.testFramework.TestApplicationManager
import com.intellij.testFramework.fixtures.LightJavaCodeInsightFixtureTestCase
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package spp.jetbrains.marker.jvm.psi.endpoint
package spp.jetbrains.marker.jvm.detect.endpoint

import com.intellij.openapi.application.ApplicationManager
import io.vertx.kotlin.coroutines.await
import org.intellij.lang.annotations.Language
import org.jetbrains.uast.UFile
import org.jetbrains.uast.toUElement
import spp.jetbrains.ScopeExtensions.safeRunBlocking
import spp.jetbrains.marker.jvm.JVMEndpointDetector
import spp.jetbrains.marker.jvm.detect.JVMEndpointDetector

class GroovyEndpointDetectorTest : AbstractEndpointDetectorTest() {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package spp.jetbrains.marker.jvm.psi.endpoint
package spp.jetbrains.marker.jvm.detect.endpoint

import com.intellij.openapi.application.ApplicationManager
import io.vertx.kotlin.coroutines.await
import org.intellij.lang.annotations.Language
import org.jetbrains.uast.UFile
import org.jetbrains.uast.toUElement
import spp.jetbrains.ScopeExtensions.safeRunBlocking
import spp.jetbrains.marker.jvm.JVMEndpointDetector
import spp.jetbrains.marker.jvm.detect.JVMEndpointDetector

class JavaEndpointDetectorTest : AbstractEndpointDetectorTest() {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package spp.jetbrains.marker.jvm.psi.endpoint
package spp.jetbrains.marker.jvm.detect.endpoint

import com.intellij.openapi.application.ApplicationManager
import io.vertx.kotlin.coroutines.await
import org.intellij.lang.annotations.Language
import org.jetbrains.uast.UFile
import org.jetbrains.uast.toUElement
import spp.jetbrains.ScopeExtensions.safeRunBlocking
import spp.jetbrains.marker.jvm.JVMEndpointDetector
import spp.jetbrains.marker.jvm.detect.JVMEndpointDetector

class KotlinEndpointDetectorTest : AbstractEndpointDetectorTest() {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package spp.jetbrains.marker.jvm.psi.endpoint
package spp.jetbrains.marker.jvm.detect.endpoint

import com.intellij.openapi.application.ApplicationManager
import io.vertx.kotlin.coroutines.await
import org.intellij.lang.annotations.Language
import org.jetbrains.uast.UFile
import org.jetbrains.uast.toUElement
import spp.jetbrains.ScopeExtensions.safeRunBlocking
import spp.jetbrains.marker.jvm.JVMEndpointDetector
import spp.jetbrains.marker.jvm.detect.JVMEndpointDetector

class ScalaEndpointNameDetectorTest : AbstractEndpointDetectorTest() {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
package spp.jetbrains.marker.py

import spp.jetbrains.marker.impl.*
import spp.jetbrains.marker.py.service.*

/**
* todo: description.
Expand Down
Loading