@@ -109,6 +109,8 @@ trans_key([{'{', Line} | Tokens], Acc) ->
109
109
trans_key ([T | Tokens ], Acc ) ->
110
110
trans_key (Tokens , [T | Acc ]).
111
111
112
+ trans_key_lb ([{unqstr , Line , Value } | TokensRev ]) ->
113
+ [{key , Line , {keypath , paths (Value )}} | TokensRev ];
112
114
trans_key_lb ([{string , Line , Value } | TokensRev ]) ->
113
115
[{key , Line , Value } | TokensRev ];
114
116
trans_key_lb (Otherwise ) ->
@@ -145,6 +147,7 @@ trans_splice_end([], Seq, Acc) ->
145
147
lists :reverse (NewAcc ).
146
148
147
149
do_trans_splice_end ([]) -> [];
150
+ do_trans_splice_end ([{unqstr , Line , Value } | T ]) -> [{endstr , Line , Value } | T ];
148
151
do_trans_splice_end ([{string , Line , Value } | T ]) -> [{endstr , Line , Value } | T ];
149
152
do_trans_splice_end ([{variable , Line , Value } | T ]) -> [{endvar , Line , Value } | T ];
150
153
do_trans_splice_end ([{'}' , Line } | T ]) -> [{endobj , Line } | T ];
@@ -225,7 +228,12 @@ abspath(Var, PathStack) ->
225
228
do_abspath (Var , ['$root' ]) ->
226
229
Var ;
227
230
do_abspath (Var , [#{? HOCON_T := key } = K | More ]) ->
228
- do_abspath (unicode_bin ([value_of (K ), <<" ." >>, Var ]), More ).
231
+ do_abspath (unicode_bin ([maybe_join (value_of (K )), <<" ." >>, Var ]), More ).
232
+
233
+ maybe_join ({keypath , Path }) ->
234
+ infix (Path , " ." );
235
+ maybe_join (Path ) ->
236
+ Path .
229
237
230
238
-spec load_include (boxed (), hocon :ctx ()) -> boxed () | nothing .
231
239
@@ -308,3 +316,12 @@ format_error(Line, ErrorInfo, Ctx) ->
308
316
309
317
unicode_bin (L ) -> unicode :characters_to_binary (L , utf8 ).
310
318
unicode_list (B ) -> unicode :characters_to_list (B , utf8 ).
319
+
320
+ paths (Key ) when is_binary (Key ) ->
321
+ paths (unicode :characters_to_list (Key , utf8 ));
322
+ paths (Key ) when is_list (Key ) ->
323
+ lists :map (fun unicode_bin /1 , string :tokens (Key , " ." )).
324
+
325
+ infix ([], _ ) -> [];
326
+ infix ([X ], _ ) -> [X ];
327
+ infix ([H | T ], I ) -> [H , I | infix (T , I )].
0 commit comments