Skip to content

Commit 39e78e0

Browse files
authored
refactor: improved packaging (#858)
1 parent d6f82cc commit 39e78e0

File tree

48 files changed

+68
-65
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+68
-65
lines changed

marker/js-marker/src/main/kotlin/spp/jetbrains/marker/js/JavascriptMarker.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
package spp.jetbrains.marker.js
1818

1919
import spp.jetbrains.marker.impl.*
20+
import spp.jetbrains.marker.js.service.*
2021

2122
/**
2223
* Provides JavaScript support for the Marker API.

marker/js-marker/src/main/kotlin/spp/jetbrains/marker/js/JavascriptEndpointDetector.kt renamed to marker/js-marker/src/main/kotlin/spp/jetbrains/marker/js/detect/JavascriptEndpointDetector.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@
1414
* See the License for the specific language governing permissions and
1515
* limitations under the License.
1616
*/
17-
package spp.jetbrains.marker.js
17+
package spp.jetbrains.marker.js.detect
1818

1919
import com.intellij.openapi.project.Project
20-
import spp.jetbrains.marker.js.psi.endpoint.ExpressEndpoint
20+
import spp.jetbrains.marker.js.detect.endpoint.ExpressEndpoint
2121
import spp.jetbrains.marker.source.info.EndpointDetector
2222
import spp.jetbrains.marker.source.info.EndpointDetector.EndpointNameDeterminer
2323

marker/js-marker/src/main/kotlin/spp/jetbrains/marker/js/JavascriptLoggerDetector.kt renamed to marker/js-marker/src/main/kotlin/spp/jetbrains/marker/js/detect/JavascriptLoggerDetector.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* See the License for the specific language governing permissions and
1515
* limitations under the License.
1616
*/
17-
package spp.jetbrains.marker.js
17+
package spp.jetbrains.marker.js.detect
1818

1919
import com.intellij.openapi.project.Project
2020
import spp.jetbrains.marker.source.info.LoggerDetector

marker/js-marker/src/main/kotlin/spp/jetbrains/marker/js/psi/endpoint/ExpressEndpoint.kt renamed to marker/js-marker/src/main/kotlin/spp/jetbrains/marker/js/detect/endpoint/ExpressEndpoint.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* See the License for the specific language governing permissions and
1515
* limitations under the License.
1616
*/
17-
package spp.jetbrains.marker.js.psi.endpoint
17+
package spp.jetbrains.marker.js.detect.endpoint
1818

1919
import com.intellij.lang.javascript.psi.*
2020
import com.intellij.openapi.application.ApplicationManager

marker/js-marker/src/main/kotlin/spp/jetbrains/marker/js/JavascriptVariableRootNode.kt renamed to marker/js-marker/src/main/kotlin/spp/jetbrains/marker/js/presentation/JavascriptVariableRootNode.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* See the License for the specific language governing permissions and
1515
* limitations under the License.
1616
*/
17-
package spp.jetbrains.marker.js
17+
package spp.jetbrains.marker.js.presentation
1818

1919
import com.intellij.ide.projectView.PresentationData
2020
import com.intellij.openapi.editor.DefaultLanguageHighlighterColors

marker/js-marker/src/main/kotlin/spp/jetbrains/marker/js/JavascriptVariableSimpleNode.kt renamed to marker/js-marker/src/main/kotlin/spp/jetbrains/marker/js/presentation/JavascriptVariableSimpleNode.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* See the License for the specific language governing permissions and
1515
* limitations under the License.
1616
*/
17-
package spp.jetbrains.marker.js
17+
package spp.jetbrains.marker.js.presentation
1818

1919
import com.intellij.icons.AllIcons
2020
import com.intellij.ide.projectView.PresentationData

marker/js-marker/src/main/kotlin/spp/jetbrains/marker/js/JavascriptArtifactConditionService.kt renamed to marker/js-marker/src/main/kotlin/spp/jetbrains/marker/js/service/JavascriptArtifactConditionService.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* See the License for the specific language governing permissions and
1515
* limitations under the License.
1616
*/
17-
package spp.jetbrains.marker.js
17+
package spp.jetbrains.marker.js.service
1818

1919
import com.intellij.psi.PsiElement
2020
import spp.jetbrains.marker.IArtifactConditionService

marker/js-marker/src/main/kotlin/spp/jetbrains/marker/js/JavascriptArtifactCreationService.kt renamed to marker/js-marker/src/main/kotlin/spp/jetbrains/marker/js/service/JavascriptArtifactCreationService.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* See the License for the specific language governing permissions and
1515
* limitations under the License.
1616
*/
17-
package spp.jetbrains.marker.js
17+
package spp.jetbrains.marker.js.service
1818

1919
import com.intellij.psi.PsiElement
2020
import com.intellij.psi.PsiNameIdentifierOwner

marker/js-marker/src/main/kotlin/spp/jetbrains/marker/js/JavascriptArtifactNamingService.kt renamed to marker/js-marker/src/main/kotlin/spp/jetbrains/marker/js/service/JavascriptArtifactNamingService.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* See the License for the specific language governing permissions and
1515
* limitations under the License.
1616
*/
17-
package spp.jetbrains.marker.js
17+
package spp.jetbrains.marker.js.service
1818

1919
import com.intellij.lang.javascript.psi.*
2020
import com.intellij.lang.javascript.psi.ecmal4.JSClass

marker/js-marker/src/main/kotlin/spp/jetbrains/marker/js/JavascriptArtifactScopeService.kt renamed to marker/js-marker/src/main/kotlin/spp/jetbrains/marker/js/service/JavascriptArtifactScopeService.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* See the License for the specific language governing permissions and
1515
* limitations under the License.
1616
*/
17-
package spp.jetbrains.marker.js
17+
package spp.jetbrains.marker.js.service
1818

1919
import com.intellij.lang.javascript.psi.JSFunction
2020
import com.intellij.lang.javascript.psi.JSVariable

0 commit comments

Comments
 (0)