726dff02 by Michael Richards

Merge branch 'string-extensions-compatibility'

2 parents 19bf8b2a fd75748c
......@@ -8,7 +8,7 @@ class Rivets.KeypathParser
tokens = []
current = {interface: root, path: ''}
for index, char of keypath
for char in keypath
if char in interfaces
tokens.push current
current = {interface: char, path: ''}
......