Java IRC bot
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

TokenTypeArity.java 243B

12345678910111213141516171819
  1. /*
  2. * To change this template, choose Tools | Templates
  3. * and open the template in the editor.
  4. */
  5. package com.dmdirc.addons.calc;
  6. /**
  7. *
  8. * @author chris
  9. */
  10. public enum TokenTypeArity {
  11. HIDDEN,
  12. NULLARY,
  13. UNARY,
  14. BINARY;
  15. }