manifold-lang / manifold-frontend

Frontend compiler for Manifold high-level language
GNU General Public License v3.0
6 stars 6 forks source link

Create an AttributedValue interface #2

Open mtrberzi opened 10 years ago

mtrberzi commented 10 years ago

Issue by lucaswoj Wednesday Nov 13, 2013 at 19:51 GMT Originally opened as https://github.com/manifold-lang/manifold/issues/27


There are several different types that have "attributes"

We should ave a java interface for these.

interface AttributedValue {
   Value getAttributeValue(String name);
}