comparison core/src/luan/impl/ExprImpl.java @ 594:e91e476186c7

theme indentation
author Franklin Schmidt <fschmidt@gmail.com>
date Thu, 03 Sep 2015 12:23:53 -0600
parents
children 859c0dedc8b6
comparison
equal deleted inserted replaced
593:92c9fa5e39e6 594:e91e476186c7
1 package luan.impl;
2
3 import luan.LuanElement;
4
5
6 abstract class ExprImpl extends CodeImpl implements Expr {
7
8 ExprImpl(LuanElement el) {
9 super(el);
10 }
11 }