about summary refs log tree commit diff
path: root/src/fix-ng/fix.sdf
diff options
context:
space:
mode:
Diffstat (limited to 'src/fix-ng/fix.sdf')
-rw-r--r--src/fix-ng/fix.sdf6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/fix-ng/fix.sdf b/src/fix-ng/fix.sdf
index 72f3e694d02e..e94e696749f3 100644
--- a/src/fix-ng/fix.sdf
+++ b/src/fix-ng/fix.sdf
@@ -53,9 +53,13 @@ exports
     "[" {Expr ","}* "]"
     -> Expr {cons("List")}
 
+    Expr "." Id
+    -> Expr {cons("Select")}
+
   context-free priorities
 
-    Expr Expr -> Expr
+    Expr "." Id -> Expr
+  > Expr Expr -> Expr
   > "{" {Id ","}* "}" ":" Expr -> Expr