Skip to content

Commit

Permalink
JDT Core Beta java19 to master
Browse files Browse the repository at this point in the history
Updated @SInCE tags for master
  • Loading branch information
sravanlakkimsetti committed Sep 21, 2022
1 parent 2632adc commit 8753c03
Show file tree
Hide file tree
Showing 9 changed files with 13 additions and 21 deletions.
8 changes: 0 additions & 8 deletions org.eclipse.jdt.core/.settings/.api_filters
Original file line number Diff line number Diff line change
@@ -1,13 +1,5 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<component id="org.eclipse.jdt.core" version="2">
<resource path="META-INF/MANIFEST.MF">
<filter id="924844039">
<message_arguments>
<message_argument value="3.31.50"/>
<message_argument value="3.31.0"/>
</message_arguments>
</filter>
</resource>
<resource path="compiler/org/eclipse/jdt/core/compiler/CategorizedProblem.java" type="org.eclipse.jdt.core.compiler.CategorizedProblem">
<filter comment="Java 14" id="576725006">
<message_arguments>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2508,17 +2508,17 @@ public interface IProblem {
* @noreference preview feature error */
int UnexpectedTypeinSwitchPattern = PreviewRelated + 1911;
/**
* @since 3.31
* @since 3.32
* @noreference preview feature
*/
int UnexpectedTypeinRecordPattern = PreviewRelated + 1912;
/**
* @since 3.31
* @since 3.32
* @noreference preview feature
*/
int RecordPatternMismatch = PreviewRelated + 1913;
/**
* @since 3.31
* @since 3.32
* @noreference preview feature
*/
int PatternTypeMismatch = PreviewRelated + 1914;
Expand Down
4 changes: 2 additions & 2 deletions org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/AST.java
Original file line number Diff line number Diff line change
Expand Up @@ -419,7 +419,7 @@ public final class AST {
* up to and including Java SE 18(aka JDK 18).
* </p>
*
* @since 3.31
* @since 3.32
*/
public static final int JLS19 = 19;
/**
Expand Down Expand Up @@ -2781,7 +2781,7 @@ public RecordDeclaration newRecordDeclaration() {
* unspecified pattern variable.
*
* @return a new unparented type pattern node
* @since 3.31
* @since 3.32
*/
public RecordPattern newRecordPattern() {
RecordPattern result = new RecordPattern(this);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2173,7 +2173,7 @@ && safeSubtreeListMatch(node.bodyDeclarations(), o.bodyDeclarations())
* @return <code>true</code> if the subtree matches, or
* <code>false</code> if they do not match or the other object has a
* different node type or is <code>null</code>
* @since 3.31
* @since 3.32
*/
public boolean match(RecordPattern node, Object other) {
if (!(other instanceof RecordPattern)) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1063,7 +1063,7 @@ public abstract class ASTNode {
* Node type constant indicating a node of type
* <code>RecordPattern</code>.
* @see RecordPattern
* @since 3.31
* @since 3.32
*/
public static final int RECORD_PATTERN = 113;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1495,7 +1495,7 @@ public boolean visit(RecordDeclaration node) {
* @return <code>true</code> if the children of this node should be
* visited, and <code>false</code> if the children of this node should
* be skipped
* @since 3.31
* @since 3.32
*/
public boolean visit(RecordPattern node) {
return true;
Expand Down Expand Up @@ -2621,7 +2621,7 @@ public void endVisit(JavaDocRegion node) {
* </p>
*
* @param node the node to visit
* @since 3.31
* @since 3.32
*/
public void endVisit(JavaDocTextElement node) {
// default implementation: do nothing
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ public static class ModifierKeyword {
*/
public static final ModifierKeyword SEALED_KEYWORD = new ModifierKeyword("sealed", SEALED);//$NON-NLS-1$
/**
* @since 3.31
* @since 3.32
* @noreference preview feature
*/
public static final ModifierKeyword WHEN_KEYWORD = new ModifierKeyword("when", WHEN);//$NON-NLS-1$
Expand Down Expand Up @@ -345,7 +345,7 @@ public String toString() {
/**
* "when" modifier constant (bit mask).
* Applicable only to types.
* @since 3.31
* @since 3.32
* @noreference preview feature
*/
public static final int WHEN = 0x2000;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3157,7 +3157,7 @@ public final class JavaCore extends Plugin {
public static final String VERSION_18 = "18"; //$NON-NLS-1$
/**
* Configurable option value: {@value}.
* @since 3.31
* @since 3.32
* @category OptionValue
*/
public static final String VERSION_19 = "19"; //$NON-NLS-1$
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -211,6 +211,6 @@ public interface ITerminalSymbols {
/** @since 3.30 */
int TokenNamenon_sealed = 414;

/** @since 3.31 */
/** @since 3.32 */
int TokenNameRestrictedIdentifierWhen = 415;
}

0 comments on commit 8753c03

Please sign in to comment.