Allow derived context to be reused
[yangtools.git] / yang / yang-parser-rfc7950 / src / main / java / org / opendaylight / yangtools / yang / parser / rfc7950 / stmt / action / ActionEffectiveStatementImpl.java
index 7dd27025869a1434b68424bfc1336f969732b74d..ddc44ad380773f0b4cf3062c259ea267ae405e81 100644 (file)
@@ -33,6 +33,12 @@ final class ActionEffectiveStatementImpl extends WithSubstatements<QName, Action
         this.flags = flags;
     }
 
+    ActionEffectiveStatementImpl(final ActionEffectiveStatementImpl original, final SchemaPath path, final int flags) {
+        super(original);
+        this.path = path;
+        this.flags = flags;
+    }
+
     @Override
     @Deprecated
     public SchemaPath getPath() {