(Object o)
| 8142 | } |
| 8143 | |
| 8144 | private static Symbol tagOf(Object o){ |
| 8145 | Object tag = RT.get(RT.meta(o), RT.TAG_KEY); |
| 8146 | if(tag instanceof Symbol) |
| 8147 | return (Symbol) tag; |
| 8148 | else if(tag instanceof String) |
| 8149 | return Symbol.intern(null, (String) tag); |
| 8150 | return null; |
| 8151 | } |
| 8152 | |
| 8153 | public static Object loadFile(String file) throws IOException{ |
| 8154 | // File fo = new File(file); |
no test coverage detected