This repository has been archived by the owner on Nov 14, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2174160
commit 6803935
Showing
34 changed files
with
2,231 additions
and
1,707 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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
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
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
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
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
24 changes: 24 additions & 0 deletions
24
gen/com/yanncebron/m68kplugin/lang/psi/directive/M68kClrsoDirective.java
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
/* | ||
* Copyright 2021 The Authors | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package com.yanncebron.m68kplugin.lang.psi.directive; | ||
|
||
import java.util.List; | ||
import org.jetbrains.annotations.*; | ||
import com.intellij.psi.PsiElement; | ||
|
||
public interface M68kClrsoDirective extends M68kDirective { | ||
|
||
} |
28 changes: 28 additions & 0 deletions
28
gen/com/yanncebron/m68kplugin/lang/psi/directive/M68kSetsoDirective.java
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
/* | ||
* Copyright 2021 The Authors | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package com.yanncebron.m68kplugin.lang.psi.directive; | ||
|
||
import java.util.List; | ||
import org.jetbrains.annotations.*; | ||
import com.intellij.psi.PsiElement; | ||
import com.yanncebron.m68kplugin.lang.psi.expression.M68kExpression; | ||
|
||
public interface M68kSetsoDirective extends M68kDirective { | ||
|
||
@Nullable | ||
M68kExpression getExpression(); | ||
|
||
} |
33 changes: 33 additions & 0 deletions
33
gen/com/yanncebron/m68kplugin/lang/psi/directive/M68kSoDirective.java
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
/* | ||
* Copyright 2021 The Authors | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package com.yanncebron.m68kplugin.lang.psi.directive; | ||
|
||
import java.util.List; | ||
import org.jetbrains.annotations.*; | ||
import com.intellij.psi.PsiElement; | ||
import com.yanncebron.m68kplugin.lang.psi.M68kDataSized; | ||
import com.yanncebron.m68kplugin.lang.psi.M68kLabel; | ||
import com.yanncebron.m68kplugin.lang.psi.expression.M68kExpression; | ||
|
||
public interface M68kSoDirective extends M68kDataSized, M68kDirective { | ||
|
||
@Nullable | ||
M68kExpression getExpression(); | ||
|
||
@NotNull | ||
M68kLabel getLabel(); | ||
|
||
} |
46 changes: 46 additions & 0 deletions
46
gen/com/yanncebron/m68kplugin/lang/psi/directive/impl/M68kClrsoDirectiveImpl.java
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
/* | ||
* Copyright 2021 The Authors | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package com.yanncebron.m68kplugin.lang.psi.directive.impl; | ||
|
||
import java.util.List; | ||
import org.jetbrains.annotations.*; | ||
import com.intellij.lang.ASTNode; | ||
import com.intellij.psi.PsiElement; | ||
import com.intellij.psi.PsiElementVisitor; | ||
import com.intellij.psi.util.PsiTreeUtil; | ||
import static com.yanncebron.m68kplugin.lang.psi.M68kTypes.*; | ||
import com.intellij.extapi.psi.ASTWrapperPsiElement; | ||
import com.yanncebron.m68kplugin.lang.psi.directive.*; | ||
import com.yanncebron.m68kplugin.lang.psi.M68kVisitor; | ||
import com.yanncebron.m68kplugin.lang.psi.impl.M68kPsiImplUtil; | ||
|
||
public class M68kClrsoDirectiveImpl extends ASTWrapperPsiElement implements M68kClrsoDirective { | ||
|
||
public M68kClrsoDirectiveImpl(@NotNull ASTNode node) { | ||
super(node); | ||
} | ||
|
||
public void accept(@NotNull M68kVisitor visitor) { | ||
visitor.visitClrsoDirective(this); | ||
} | ||
|
||
@Override | ||
public void accept(@NotNull PsiElementVisitor visitor) { | ||
if (visitor instanceof M68kVisitor) accept((M68kVisitor)visitor); | ||
else super.accept(visitor); | ||
} | ||
|
||
} |
Oops, something went wrong.