Back to project page bad.
The source code is released under:
Copyright (C) 2013 Madis Pink Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Softwa...
If you think the Android project bad listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.madisp.bad.expr; /*from ww w .j a v a 2 s. c o m*/ import com.madisp.bad.eval.BadConverter; import com.madisp.bad.eval.Scope; import com.madisp.bad.eval.Watcher; /** * Created with IntelliJ IDEA. * User: madis * Date: 3/23/13 * Time: 1:57 PM */ public class OrExpression implements Expression { Expression left; Expression right; public OrExpression(Expression left, Expression right) { this.left = left; this.right = right; } @Override public Object value(Scope scope) { Object leftVal = left.value(scope); if (BadConverter.bool(leftVal)) { return leftVal; } else { return right.value(scope); } } @Override public void addWatcher(Scope scope, Watcher w) { left.addWatcher(scope, w); right.addWatcher(scope, w); } }