]> gerrit.simantics Code Review - simantics/sysdyn.git/blob
35225c26db7797a9a881197218d9b9bf49b4358b
[simantics/sysdyn.git] /
1 /*******************************************************************************\r
2  * Copyright (c) 2007, 2010 Association for Decentralized Information Management\r
3  * in Industry THTH ry.\r
4  * All rights reserved. This program and the accompanying materials\r
5  * are made available under the terms of the Eclipse Public License v1.0\r
6  * which accompanies this distribution, and is available at\r
7  * http://www.eclipse.org/legal/epl-v10.html\r
8  *\r
9  * Contributors:\r
10  *     VTT Technical Research Centre of Finland - initial API and implementation\r
11  *******************************************************************************/\r
12 package org.simantics.sysdyn.expressionParser;\r
13 \r
14 import java.io.StringReader;\r
15 import java.util.HashMap;\r
16 import java.util.List;\r
17 \r
18 public class TestExpressionParser {\r
19     \r
20     static private ExpressionParser parser;\r
21     \r
22     public static void parse(String string) {\r
23         parser.ReInit(new StringReader(string));\r
24         try {\r
25             parser.expr();\r
26             HashMap<String, List<Token>> references = parser.getReferences();\r
27             for(String ref : references.keySet()) {\r
28                 System.out.println(ref);\r
29             }\r
30         } catch (ParseException e) {\r
31             System.out.println("While parsing " + string + ":");\r
32             // TODO Auto-generated catch block\r
33             e.printStackTrace();\r
34         }\r
35     }\r
36     \r
37     public static void main(String[] args) {\r
38         parser = new ExpressionParser(\r
39                 new StringReader("")\r
40         );\r
41         parse("1 + m2ma");\r
42         System.out.println("##");\r
43         parse("ter2e + moro");\r
44         System.out.println("##");\r
45         parse("moro * sqr(4.0) + min(m2ma, moi)");\r
46     }\r
47 }\r