This repository was archived by the owner on Feb 22, 2018. It is now read-only.

Description
When trying to use ng-repeat over a map:
<span ng-repeat="(key, value) in {'a': 1, 'b': 2, 'c': 3}">
{{key}}: {{value}}
</span>
which is described in the Angular JS documentation:
http://docs.angularjs.org/api/ng.directive:ngRepeat#!
I get the following error:
type '_LinkedHashMap' is not a subtype of type 'List' of 'value'.