Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'lrparser/org.eclipse.cdt.core.lrparser/src/org/eclipse/cdt/core/dom/lrparser/LRParserProperties.java')
-rw-r--r--lrparser/org.eclipse.cdt.core.lrparser/src/org/eclipse/cdt/core/dom/lrparser/LRParserProperties.java17
1 files changed, 8 insertions, 9 deletions
diff --git a/lrparser/org.eclipse.cdt.core.lrparser/src/org/eclipse/cdt/core/dom/lrparser/LRParserProperties.java b/lrparser/org.eclipse.cdt.core.lrparser/src/org/eclipse/cdt/core/dom/lrparser/LRParserProperties.java
index 041ba7b25ee..c840d6e6443 100644
--- a/lrparser/org.eclipse.cdt.core.lrparser/src/org/eclipse/cdt/core/dom/lrparser/LRParserProperties.java
+++ b/lrparser/org.eclipse.cdt.core.lrparser/src/org/eclipse/cdt/core/dom/lrparser/LRParserProperties.java
@@ -13,27 +13,26 @@
*******************************************************************************/
package org.eclipse.cdt.core.dom.lrparser;
-
@SuppressWarnings("nls")
public final class LRParserProperties {
/**
- * The LR parsers do not actually skip the parsing of function bodies,
+ * The LR parsers do not actually skip the parsing of function bodies,
* but this option does have the effect of not generating AST nodes
* for function bodies.
- *
+ *
* TODO this is not implemented yet in the LR parser
- *
+ *
* Possible values: "true", null
*/
public static final String SKIP_FUNCTION_BODIES = "org.eclipse.cdt.core.dom.lrparser.skipFunctionBodies";
-
+
/**
- * Instructs the parser not to create AST nodes for expressions
+ * Instructs the parser not to create AST nodes for expressions
* within aggregate initializers when they do not contain names.
- *
+ *
* https://bugs.eclipse.org/bugs/show_bug.cgi?id=253690
- *
+ *
* Possible values: "true", null
*/
public static final String SKIP_TRIVIAL_EXPRESSIONS_IN_AGGREGATE_INITIALIZERS = "org.eclipse.cdt.core.dom.lrparser.skipTrivialExpressionsInAggregateInitializers";
@@ -42,5 +41,5 @@ public final class LRParserProperties {
* The location of the translation unit as given by the CodeReader.
*/
public static final String TRANSLATION_UNIT_PATH = "org.eclipse.cdt.core.dom.lrparser.translationUnitPath";
-
+
}

Back to the top