Remove throw of 'Embed not found', for now. Signed-off-by: Erik de Bruin <[email protected]>
Project: http://git-wip-us.apache.org/repos/asf/flex-falcon/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-falcon/commit/92caf9b6 Tree: http://git-wip-us.apache.org/repos/asf/flex-falcon/tree/92caf9b6 Diff: http://git-wip-us.apache.org/repos/asf/flex-falcon/diff/92caf9b6 Branch: refs/heads/develop Commit: 92caf9b640572005d61c1afb1cd4d05da9f3f5cc Parents: e58fa73 Author: Erik de Bruin <[email protected]> Authored: Wed Jul 30 14:35:02 2014 +0200 Committer: Erik de Bruin <[email protected]> Committed: Fri Aug 1 12:59:16 2014 +0200 ---------------------------------------------------------------------- .../internal/driver/js/flexjs/JSCSSCompilationSession.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/92caf9b6/compiler.jx/src/org/apache/flex/compiler/internal/driver/js/flexjs/JSCSSCompilationSession.java ---------------------------------------------------------------------- diff --git a/compiler.jx/src/org/apache/flex/compiler/internal/driver/js/flexjs/JSCSSCompilationSession.java b/compiler.jx/src/org/apache/flex/compiler/internal/driver/js/flexjs/JSCSSCompilationSession.java index b063168..44cb3a0 100644 --- a/compiler.jx/src/org/apache/flex/compiler/internal/driver/js/flexjs/JSCSSCompilationSession.java +++ b/compiler.jx/src/org/apache/flex/compiler/internal/driver/js/flexjs/JSCSSCompilationSession.java @@ -37,7 +37,6 @@ import org.apache.flex.compiler.internal.css.CSSNumberPropertyValue; import org.apache.flex.compiler.internal.css.CSSRgbColorPropertyValue; import org.apache.flex.compiler.internal.css.CSSStringPropertyValue; import org.apache.flex.compiler.internal.css.codegen.CSSCompilationSession; -import org.apache.flex.compiler.problems.CSSCodeGenProblem; import org.apache.flex.compiler.problems.ICompilerProblem; import org.apache.flex.compiler.projects.ICompilerProject; @@ -253,9 +252,12 @@ public class JSCSSCompilationSession extends CSSCompilationSession } else if ("Embed".equals(functionCall.name)) { + // TODO: implement me + /* final ICompilerProblem e = new CSSCodeGenProblem( new IllegalStateException("Unable to find compilation unit for " + functionCall)); problems.add(e); + */ } else {
