mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
"gnu" prefix removed from CommandLine classes according to https://upsource.labs.intellij.net/idea-community/review/IDEA-COMMUNITY-CR-1732
This commit is contained in:
+2
-2
@@ -1,10 +1,10 @@
|
||||
// This is a generated file. Not intended for manual editing.
|
||||
package com.jetbrains.commandInterface.gnuCommandLine;
|
||||
package com.jetbrains.commandInterface.commandLine;
|
||||
|
||||
import com.intellij.psi.tree.IElementType;
|
||||
import com.intellij.psi.PsiElement;
|
||||
import com.intellij.lang.ASTNode;
|
||||
import com.jetbrains.commandInterface.gnuCommandLine.psi.impl.*;
|
||||
import com.jetbrains.commandInterface.commandLine.psi.impl.*;
|
||||
|
||||
public interface CommandLineElementTypes {
|
||||
|
||||
+3
-3
@@ -1,10 +1,10 @@
|
||||
// This is a generated file. Not intended for manual editing.
|
||||
package com.jetbrains.commandInterface.gnuCommandLine;
|
||||
package com.jetbrains.commandInterface.commandLine;
|
||||
|
||||
import com.intellij.lang.PsiBuilder;
|
||||
import com.intellij.lang.PsiBuilder.Marker;
|
||||
import static com.jetbrains.commandInterface.gnuCommandLine.CommandLineElementTypes.*;
|
||||
import static com.jetbrains.commandInterface.gnuCommandLine.CommandLineParserUtil.*;
|
||||
import static com.jetbrains.commandInterface.commandLine.CommandLineElementTypes.*;
|
||||
import static com.jetbrains.commandInterface.commandLine.CommandLineParserUtil.*;
|
||||
import com.intellij.psi.tree.IElementType;
|
||||
import com.intellij.lang.ASTNode;
|
||||
import com.intellij.psi.tree.TokenSet;
|
||||
+2
-2
@@ -1,7 +1,7 @@
|
||||
package com.jetbrains.commandInterface.gnuCommandLine;
|
||||
package com.jetbrains.commandInterface.commandLine;
|
||||
import com.intellij.lexer.*;
|
||||
import com.intellij.psi.tree.IElementType;
|
||||
import static com.jetbrains.commandInterface.gnuCommandLine.CommandLineElementTypes.*;
|
||||
import static com.jetbrains.commandInterface.commandLine.CommandLineElementTypes.*;
|
||||
|
||||
%%
|
||||
|
||||
+5
-5
@@ -1,16 +1,16 @@
|
||||
/* The following code was generated by JFlex 1.4.3 on 12.03.15 21:27 */
|
||||
/* The following code was generated by JFlex 1.4.3 on 23.03.15 20:24 */
|
||||
|
||||
package com.jetbrains.commandInterface.gnuCommandLine;
|
||||
package com.jetbrains.commandInterface.commandLine;
|
||||
import com.intellij.lexer.*;
|
||||
import com.intellij.psi.tree.IElementType;
|
||||
import static com.jetbrains.commandInterface.gnuCommandLine.CommandLineElementTypes.*;
|
||||
import static com.jetbrains.commandInterface.commandLine.CommandLineElementTypes.*;
|
||||
|
||||
|
||||
/**
|
||||
* This class is a scanner generated by
|
||||
* <a href="http://www.jflex.de/">JFlex</a> 1.4.3
|
||||
* on 12.03.15 21:27 from the specification file
|
||||
* <tt>C:/work/ultimate/community/python/gen/com/jetbrains/commandInterface/gnuCommandLine/_CommandLineLexer.flex</tt>
|
||||
* on 23.03.15 20:24 from the specification file
|
||||
* <tt>C:/Users/ilya.kazakevich/work/ultimate/community/python/gen/com/jetbrains/commandInterface/commandLine/_CommandLineLexer.flex</tt>
|
||||
*/
|
||||
public class _CommandLineLexer implements FlexLexer {
|
||||
/** initial size of the lookahead buffer */
|
||||
+2
-2
@@ -1,10 +1,10 @@
|
||||
// This is a generated file. Not intended for manual editing.
|
||||
package com.jetbrains.commandInterface.gnuCommandLine.psi;
|
||||
package com.jetbrains.commandInterface.commandLine.psi;
|
||||
|
||||
import java.util.List;
|
||||
import org.jetbrains.annotations.*;
|
||||
import com.intellij.psi.PsiElement;
|
||||
import com.jetbrains.commandInterface.gnuCommandLine.CommandLinePart;
|
||||
import com.jetbrains.commandInterface.commandLine.CommandLinePart;
|
||||
import com.jetbrains.commandInterface.command.Argument;
|
||||
import com.jetbrains.commandInterface.command.Option;
|
||||
|
||||
+2
-2
@@ -1,10 +1,10 @@
|
||||
// This is a generated file. Not intended for manual editing.
|
||||
package com.jetbrains.commandInterface.gnuCommandLine.psi;
|
||||
package com.jetbrains.commandInterface.commandLine.psi;
|
||||
|
||||
import java.util.List;
|
||||
import org.jetbrains.annotations.*;
|
||||
import com.intellij.psi.PsiElement;
|
||||
import com.jetbrains.commandInterface.gnuCommandLine.CommandLinePart;
|
||||
import com.jetbrains.commandInterface.commandLine.CommandLinePart;
|
||||
|
||||
public interface CommandLineCommand extends CommandLinePart {
|
||||
|
||||
+2
-2
@@ -1,10 +1,10 @@
|
||||
// This is a generated file. Not intended for manual editing.
|
||||
package com.jetbrains.commandInterface.gnuCommandLine.psi;
|
||||
package com.jetbrains.commandInterface.commandLine.psi;
|
||||
|
||||
import java.util.List;
|
||||
import org.jetbrains.annotations.*;
|
||||
import com.intellij.psi.PsiElement;
|
||||
import com.jetbrains.commandInterface.gnuCommandLine.CommandLinePart;
|
||||
import com.jetbrains.commandInterface.commandLine.CommandLinePart;
|
||||
import com.jetbrains.commandInterface.command.Option;
|
||||
|
||||
public interface CommandLineOption extends CommandLinePart {
|
||||
+2
-2
@@ -1,10 +1,10 @@
|
||||
// This is a generated file. Not intended for manual editing.
|
||||
package com.jetbrains.commandInterface.gnuCommandLine.psi;
|
||||
package com.jetbrains.commandInterface.commandLine.psi;
|
||||
|
||||
import org.jetbrains.annotations.*;
|
||||
import com.intellij.psi.PsiElementVisitor;
|
||||
import com.intellij.psi.PsiElement;
|
||||
import com.jetbrains.commandInterface.gnuCommandLine.CommandLinePart;
|
||||
import com.jetbrains.commandInterface.commandLine.CommandLinePart;
|
||||
|
||||
public class CommandLineVisitor extends PsiElementVisitor {
|
||||
|
||||
+4
-4
@@ -1,5 +1,5 @@
|
||||
// This is a generated file. Not intended for manual editing.
|
||||
package com.jetbrains.commandInterface.gnuCommandLine.psi.impl;
|
||||
package com.jetbrains.commandInterface.commandLine.psi.impl;
|
||||
|
||||
import java.util.List;
|
||||
import org.jetbrains.annotations.*;
|
||||
@@ -7,9 +7,9 @@ import com.intellij.lang.ASTNode;
|
||||
import com.intellij.psi.PsiElement;
|
||||
import com.intellij.psi.PsiElementVisitor;
|
||||
import com.intellij.psi.util.PsiTreeUtil;
|
||||
import static com.jetbrains.commandInterface.gnuCommandLine.CommandLineElementTypes.*;
|
||||
import com.jetbrains.commandInterface.gnuCommandLine.CommandLineElement;
|
||||
import com.jetbrains.commandInterface.gnuCommandLine.psi.*;
|
||||
import static com.jetbrains.commandInterface.commandLine.CommandLineElementTypes.*;
|
||||
import com.jetbrains.commandInterface.commandLine.CommandLineElement;
|
||||
import com.jetbrains.commandInterface.commandLine.psi.*;
|
||||
import com.jetbrains.commandInterface.command.Argument;
|
||||
import com.jetbrains.commandInterface.command.Option;
|
||||
|
||||
+4
-4
@@ -1,5 +1,5 @@
|
||||
// This is a generated file. Not intended for manual editing.
|
||||
package com.jetbrains.commandInterface.gnuCommandLine.psi.impl;
|
||||
package com.jetbrains.commandInterface.commandLine.psi.impl;
|
||||
|
||||
import java.util.List;
|
||||
import org.jetbrains.annotations.*;
|
||||
@@ -7,9 +7,9 @@ import com.intellij.lang.ASTNode;
|
||||
import com.intellij.psi.PsiElement;
|
||||
import com.intellij.psi.PsiElementVisitor;
|
||||
import com.intellij.psi.util.PsiTreeUtil;
|
||||
import static com.jetbrains.commandInterface.gnuCommandLine.CommandLineElementTypes.*;
|
||||
import com.jetbrains.commandInterface.gnuCommandLine.CommandLineElement;
|
||||
import com.jetbrains.commandInterface.gnuCommandLine.psi.*;
|
||||
import static com.jetbrains.commandInterface.commandLine.CommandLineElementTypes.*;
|
||||
import com.jetbrains.commandInterface.commandLine.CommandLineElement;
|
||||
import com.jetbrains.commandInterface.commandLine.psi.*;
|
||||
|
||||
public class CommandLineCommandImpl extends CommandLineElement implements CommandLineCommand {
|
||||
|
||||
+4
-4
@@ -1,5 +1,5 @@
|
||||
// This is a generated file. Not intended for manual editing.
|
||||
package com.jetbrains.commandInterface.gnuCommandLine.psi.impl;
|
||||
package com.jetbrains.commandInterface.commandLine.psi.impl;
|
||||
|
||||
import java.util.List;
|
||||
import org.jetbrains.annotations.*;
|
||||
@@ -7,9 +7,9 @@ import com.intellij.lang.ASTNode;
|
||||
import com.intellij.psi.PsiElement;
|
||||
import com.intellij.psi.PsiElementVisitor;
|
||||
import com.intellij.psi.util.PsiTreeUtil;
|
||||
import static com.jetbrains.commandInterface.gnuCommandLine.CommandLineElementTypes.*;
|
||||
import com.jetbrains.commandInterface.gnuCommandLine.CommandLineElement;
|
||||
import com.jetbrains.commandInterface.gnuCommandLine.psi.*;
|
||||
import static com.jetbrains.commandInterface.commandLine.CommandLineElementTypes.*;
|
||||
import com.jetbrains.commandInterface.commandLine.CommandLineElement;
|
||||
import com.jetbrains.commandInterface.commandLine.psi.*;
|
||||
import com.jetbrains.commandInterface.command.Option;
|
||||
|
||||
public class CommandLineOptionImpl extends CommandLineElement implements CommandLineOption {
|
||||
Reference in New Issue
Block a user