Skip to content

Commit

Permalink
Commented out duplicate function declarations
Browse files Browse the repository at this point in the history
  • Loading branch information
PaulKlint committed Feb 25, 2024
1 parent c064b7c commit a53a0f5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/org/rascalmpl/library/lang/dot/Dot.rsc
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ str oStm( E(Id from, Id to)) = "<from>-\><to>";
str oStm( E(Id from, Id to, Attrs attrs)) = "<from>-\><to><oAttrs(attrs)>";

str oStm( E(NodeId from, Id to)) = "<oNodeId(from)>-\><to>";
str oStm( E(Id from, Id to, Attrs attrs)) = "<from>-\><to><oAttrs(attrs)>";
//str oStm( E(Id from, Id to, Attrs attrs)) = "<from>-\><to><oAttrs(attrs)>";

str oStm( E(Stm from, Id to)) = "<oStm(from)>-\><to>";
str oStm( E(Stm from, Id to, Attrs attrs)) = "<oStm(from)>-\><to><oAttrs(attrs)>";
Expand All @@ -149,7 +149,7 @@ str oStm( E(Id from, NodeId to)) = "<from>-\><oNodeId(to)>";
str oStm( E(Id from, NodeId to, Attrs attrs)) = "<from>-\><oNodeId(to)><oAttrs(attrs)>";

str oStm( E(NodeId from, NodeId to)) = "<oNodeId(from)>-\><oNodeId(to)>";
str oStm( E(Id from, NodeId to, Attrs attrs)) = "<from>-\><oNodeId(to)><oAttrs(attrs)>";
//str oStm( E(Id from, NodeId to, Attrs attrs)) = "<from>-\><oNodeId(to)><oAttrs(attrs)>";

str oStm( E(Stm from, NodeId to)) = "<oStm(from)>-\><oNodeId(to)>";
str oStm( E(Stm from, NodeId to, Attrs attrs)) = "<oStm(from)>-\><oNodeId(to)><oAttrs(attrs)>";
Expand All @@ -158,7 +158,7 @@ str oStm( E(Id from, Stm to)) = "<from>-\><oStm(to)>";
str oStm( E(Id from, Stm to, Attrs attrs)) = "<from>-\><oStm(to)><oAttrs(attrs)>";

str oStm( E(NodeId from, Stm to)) = "<oNodeId(from)>-\><oStm(to)>";
str oStm( E(Id from, Stm to, Attrs attrs)) = "<from>-\><oStm(to)><oAttrs(attrs)>";
//str oStm( E(Id from, Stm to, Attrs attrs)) = "<from>-\><oStm(to)><oAttrs(attrs)>";

str oStm( E(Stm from, Stm to)) = "<oStm(from)>-\><oStm(to)>";
str oStm( E(Stm from, Stm to, Attrs attrs)) = "<oStm(from)>-\><oStm(to)><oAttrs(attrs)>";
Expand Down

0 comments on commit a53a0f5

Please sign in to comment.