We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent db47dbe commit abed23cCopy full SHA for abed23c
core/esmf-aspect-model-validator/src/main/java/org/eclipse/esmf/aspectmodel/shacl/RustLikeFormatter.java
@@ -231,6 +231,12 @@ private boolean formatNode( final RDFNode node ) {
231
if ( node.asNode().equals( NodeConst.nodeRDFType ) ) {
232
spacedIfPossible( "a " );
233
}
234
+ if ( node.asNode().equals( NodeConst.nodeTrue ) ) {
235
+ spacedIfPossible( "true" );
236
+ }
237
+ if ( node.asNode().equals( NodeConst.nodeFalse ) ) {
238
+ spacedIfPossible( "false" );
239
240
return true;
241
242
0 commit comments