Skip to content
  • Vladislav Zavialov's avatar
    Bespoke TokenLocation data type · a7629334
    Vladislav Zavialov authored and Marge Bot's avatar Marge Bot committed
    The EpaAnnCO we were using contained an Anchor instead of EpaLocation,
    making it harder to work with.
    
    At the same time, using EpaLocation by itself isn't possible either,
    as we may have tokens without location information.
    
    Hence the new data type:
    	data TokenLocation = NoTokenLoc
    	                   | TokenLoc !EpaLocation
    a7629334