Add missing indexing words

This commit is contained in:
Anton Danilkin
2018-08-07 02:40:55 +03:00
parent f54d51e045
commit 86b5ba6431
3 changed files with 14 additions and 13 deletions

View File

@ -1881,9 +1881,9 @@ impl<'a, 'b> SubContext<'a, 'b> {
class, location, s,
)
}
shared::OperationKind::IndexingGetter => panic!("getter should be structural"),
shared::OperationKind::IndexingSetter => panic!("setter should be structural"),
shared::OperationKind::IndexingDeleter => panic!("deleter should be structural"),
shared::OperationKind::IndexingGetter => panic!("indexing getter should be structural"),
shared::OperationKind::IndexingSetter => panic!("indexing setter should be structural"),
shared::OperationKind::IndexingDeleter => panic!("indexing deleter should be structural"),
}
};