And the builds are passing. Thanks for sticking with it. -Alex
On 1/12/16, 4:58 PM, "Josh Tynjala" <joshtynj...@gmail.com> wrote: >Mike, > >flash.utils.clearTimeout.length became a member access expression. >IdentifierEmitter never used the fully-qualified name for a member access >expression, so it was emitting as clearTimeout.length, without the package >name. > >See my commit and/or my reply to Alex for the explanation of how I fixed >it. > >- Josh > >On Tue, Jan 12, 2016 at 3:32 PM, Michael Schmalle ><teotigraphix...@gmail.com >> wrote: > >> Josh, I have much experience with this identifier vrs. function call >>stuff >> in the compiler. I pulled my hair out when initally implementing the >> Identifier emitter and in the end made it as dumb as possible. >> >> I was looking at your commits, and read this, can you exactly explain >>what >> was failing , I'm kind of confused. >> >> One thing to note, it gets really tricky when member expressions and >> functional call nodes are being tested. >> >> Mike >> >> On Tue, Jan 12, 2016 at 6:22 PM, Alex Harui <aha...@adobe.com> wrote: >> >> > What I typically do in these situations is examine the node tree and >>see >> > if I can see some difference that I can test for. >> > >> > HTH, >> > -Alex >> > >> > On 1/12/16, 3:17 PM, "Josh Tynjala" <joshtynj...@gmail.com> wrote: >> > >> > >I'm running into some problem trying to fix this issue. I tried >>adding >> the >> > >following three tests to TestFlexJSExpressions: >> > > >> > >@Test >> > >public void testFunctionCallFullyQualified() >> > >{ >> > > IFunctionNode node = (IFunctionNode) getNode( >> > > "import goog.bind; public class B {public function b() { >> > >goog.bind(b, this); }}", >> > > IFunctionNode.class, WRAP_LEVEL_PACKAGE, true); >> > > asBlockWalker.visitFunction(node); >> > > assertOut("/**\n * @export\n */\nfoo.bar.B.prototype.b = >>function() >> > >{\n goog.bind(org.apache.flex.utils.Language.closure(this.b, this, >> 'b'), >> > >this);\n}"); >> > >} >> > > >> > >@Test >> > >public void testFunctionCallFullyQualified2() >> > >{ >> > > IFunctionNode node = (IFunctionNode) getNode( >> > > "import flash.utils.clearTimeout; public class B {public >> > >function b() { clearTimeout(12); }}", >> > > IFunctionNode.class, WRAP_LEVEL_PACKAGE, true); >> > > asBlockWalker.visitFunction(node); >> > > assertOut("/**\n * @export\n */\nfoo.bar.B.prototype.b = >>function() >> > >{\n flash.utils.clearTimeout(12);\n}"); >> > >} >> > > >> > >@Test >> > >public void testFunctionMemberFullyQualified() >> > >{ >> > > IFunctionNode node = (IFunctionNode) getNode( >> > > "import flash.utils.clearTimeout; public class B {public >> > >function b() { clearTimeout.length; }}", >> > > IFunctionNode.class, WRAP_LEVEL_PACKAGE, true); >> > > asBlockWalker.visitFunction(node); >> > > assertOut("/**\n * @export\n */\nfoo.bar.B.prototype.b = >>function() >> > >{\n flash.utils.clearTimeout.length;\n}"); >> > >} >> > > >> > >You'll notice that testFunctionCallFullyQualified2 is almost exactly >>the >> > >same, but it calls flash.utils.clearTimeout() instead of goog.bind(). >> > >Without any changes, testFunctionCallFullyQualified fails, but >> > >testFunctionCallFullyQualified2 passes. >> > > >> > >If I change IdentifierEmitter as you suggest, and check if the parent >> is a >> > >MemberAccessExpressionNode, testFunctionCallFullyQualified starts >> passing. >> > >However, testFunctionMemberFullyQualified will fail instead. >> > > >> > >- Josh >> > > >> > >On Tue, Jan 12, 2016 at 9:41 AM, Alex Harui <aha...@adobe.com> wrote: >> > > >> > >> Yep, I'm seeing this too. It could be the IdentifierEmitter >> changes. I >> > >> think the emitter code needs to check if it is already part of a >> > >> fully-qualified name, maybe by seeing if the IdentifierNode is >> parented >> > >>by >> > >> a MemberAccessExpressionNode. >> > >> >> > >> Josh, can you look into this? I think you can add a test case like >> the >> > >> following to >> > >> >> > >> >>>>compiler.jx.tests/src/org/apache/flex/compiler/internal/codegen/js/flex >>>>js >> > >>/T >> > >> estFlexJSExpressions.java >> > >> >> > >> @Test >> > >> public void testFunctionCallFullyQualified() >> > >> { >> > >> IFunctionNode node = (IFunctionNode) getNode( >> > >> "import goog.bind; public class B {public function >> b() { >> > >> goog.bind(b, this); }}", >> > >> IFunctionNode.class, WRAP_LEVEL_PACKAGE, true); >> > >> asBlockWalker.visitFunction(node); >> > >> assertOut("/**\n * @export\n */\nfoo.bar.B.prototype.b = >> > >> function() {\n >> goog.bind(org.apache.flex.utils.Language.closure(this.b, >> > >> this, 'b'), this);\n}"); >> > >> } >> > >> >> > >> >> > >> >> > >> Thanks, >> > >> -Alex >> > >> >> > >> >> > >> On 1/12/16, 7:17 AM, "Peter Ent" <p...@adobe.com> wrote: >> > >> >> > >> >I updated falcon and flexjs this morning and ran into an issue. >>First >> > >> >thought it was my problem then looked at the logs. When I build I >>get >> > >>the >> > >> >same issue as the warnings below and that causes a runtime >>failure. >> > >> > >> > >> >[java] WARNING: >> > >> >> > >> >>>>>/Users/pent/dev/flex-asjs/examples/flexjs/MobileTrader/bin/js-debug/or >>>>>g/ >> > >>>ap >> > >> >a >> > >> >che/flex/utils/Language.js:345: WARNING - goog.goog is never >>defined >> > >> > [java] var /** @type {Function} */ boundMethod = >> > >>goog.goog.bind(fn, >> > >> >object); >> > >> > [java] ^ >> > >> > [java] >> > >> > [java] Jan 12, 2016 10:12:53 AM >> > >> >com.google.javascript.jscomp.LoggerErrorManager println >> > >> > [java] WARNING: >> > >> >> > >> >>>>>/Users/pent/dev/flex-asjs/examples/flexjs/MobileTrader/bin/js-debug/or >>>>>g/ >> > >>>ap >> > >> >a >> > >> >che/flex/utils/MXMLDataInterpreter.js:209: WARNING - goog.goog is >> never >> > >> >defined >> > >> > [java] comp.addEventListener(name, goog.goog.bind(value, >> > >> >document)); >> > >> > [java] ^ >> > >> > [java] >> > >> > [java] Jan 12, 2016 10:12:53 AM >> > >> >com.google.javascript.jscomp.LoggerErrorManager println >> > >> > [java] WARNING: >> > >> >> > >> >>>>>/Users/pent/dev/flex-asjs/examples/flexjs/MobileTrader/bin/js-debug/or >>>>>g/ >> > >>>ap >> > >> >a >> > >> >che/flex/utils/MXMLDataInterpreter.js:335: WARNING - goog.goog is >> never >> > >> >defined >> > >> > [java] host.addEventListener(name, goog.goog.bind(value, >> > >>host)); >> > >> > [java] ^ >> > >> > [java] >> > >> > >> > >> >I'm looking into it, although I'm not sure I will be able to fix >>it. >> > >> > >> > >> >‹peter >> > >> > >> > >> > >> > >> > >> > >> >On 1/12/16, 6:13 AM, "flex.ci.bui...@gmail.com" >> > >><flex.ci.bui...@gmail.com >> > >> > >> > >> >wrote: >> > >> > >> > >> >>See >> > >><http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/887/changes> >> > >> >> >> > >> >>Changes: >> > >> >> >> > >> >>[Andy Dufilie] Fixed asClass() return type >> > >> >> >> > >> >>[Alex Harui] clean up warnings now that compiler doesn't >> automatically >> > >> >>deal with circulars >> > >> >> >> > >> >>[Alex Harui] also cross-compile SimpleApplication >> > >> >> >> > >> >>[Alex Harui] clean up more manualtest builds >> > >> >> >> > >> >>[pent] Separated event levels in List-based components so each >>level >> > >> >>handles events meaningful to it and dispatches higher-level >>events >> as >> > >> >>necessary. >> > >> >> >> > >> >>[joshtynjala] Language: window is not available in Node, so >>checks >> for >> > >> >>window.console only after goog.global.console is determined to be >> > >> >>undefined >> > >> >> >> > >> >>[joshtynjala] asnodec: new script for mxmlc.jar that uses new >>'node' >> > >> >>value for -js-output-type >> > >> >> >> > >> >>[joshtynjala] asnodec: added node.swc to external-library-path >> > >> >> >> > >> >>------------------------------------------ >> > >> >>[...truncated 1676 lines...] >> > >> >>compile: >> > >> >> >> > >> >>flat-ui-icons: >> > >> >> [java] Loading configuration file >> > >> >>C:\Jenkins\workspace\flex-sdk\frameworks\flex-config.xml >> > >> >> [java] Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8 >> > >> >> [java] >> > >> >> > >> >>>>>>C:\Jenkins\workspace\flex-asjs\frameworks\fonts\flat-ui-icons-regular >>>>>>.s >> > >>>>wf >> > >> >>(32757 bytes) >> > >> >> >> > >> >>main: >> > >> >> >> > >> >>main: >> > >> >> >> > >> >>ide: >> > >> >> >> > >> >>post-build: >> > >> >> >> > >> >>last-message-if-airsdk: >> > >> >> >> > >> >>main: >> > >> >> [echo] ant main target completed on 01/12/2016 11:07:52 AM >> > >> >> >> > >> >>sample-themes: >> > >> >> >> > >> >>runtime-setup: >> > >> >> >> > >> >>mustella-setup: >> > >> >> >> > >> >>load-task: >> > >> >> >> > >> >>basictests: >> > >> >> [mxmlc] Loading configuration: >> > >> >>< >> > >> >> > >>http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/frameworks/fle >> > >> >>x >> > >> >>-config.xml> >> > >> >> [mxmlc] Loading configuration: >> > >> >>< >> > >> >> > >>http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/tests >> > >> >>/ >> > >> >>basicTests/BasicTestsApp-config.xml> >> > >> >> [mxmlc] >> > >> >> [mxmlc] 421993 bytes written to >> > >> >> > >> >>>>>>C:\Jenkins\workspace\flex-asjs\mustella\tests\basicTests\BasicTestsAp >>>>>>p. >> > >>>>sw >> > >> >>f >> > >> >> in 40.557 seconds >> > >> >> [mxmlc] Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8 >> > >> >> [copy] Copying 1 file to >> > >> >>< >> > >> >> > >>http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/tests >> > >> >>/ >> > >> >>basicTests/fonts> >> > >> >> [echo] launching player and swf >> > >> >> >> > >> >>mustellaresultsparser: >> > >> >> [java] results: PASSED >> > >> >> >> > >> >>basictests-mustella: >> > >> >> >> > >> >>marmotinni-setup: >> > >> >> >> > >> >>prepare: >> > >> >> [echo] Making lib directory >> > >> >>< >> > >> >> > >>http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/marmotinni/jav >> > >> >>a >> > >> >>/c>:\Jenkins\workspace\flex-asjs\marmotinni\java/lib >> > >> >> >> > >> >>selenium2-jar-check: >> > >> >> >> > >> >>selenium2-jar: >> > >> >> >> > >> >>main: >> > >> >> >> > >> >>basictests-compile-js: >> > >> >> [echo] FLEX_HOME: >> > >> >><http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/> >> > >> >> [echo] FALCONJX_HOME: >> > >> >>< >> > >> >> > >>http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/../flex-falcon >> > >> >>/ >> > >> >>compiler.jx> >> > >> >> [echo] GOOG_HOME: C:\google\closure\Library >> > >> >> [java] Compiling file: >> > >> >>< >> > >> >> > >>http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/tests >> > >> >>/ >> > >> >>bin/js-debug/BasicTestsApp.js> >> > >> >> [java] Compiling file: >> > >> >>< >> > >> >> > >>http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/tests >> > >> >>/ >> > >> >>bin/js-debug/BasicTests.js> >> > >> >> [java] Compiling file: >> > >> >>< >> > >> >> > >>http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/tests >> > >> >>/ >> > >> >>bin/js-debug/shim/VBox.js> >> > >> >> [java] Compiling file: >> > >> >>< >> > >> >> > >>http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/tests >> > >> >>/ >> > >> >>bin/js-debug/halo/views/ButtonTests.js> >> > >> >> [java] Compiling file: >> > >> >>< >> > >> >> > >>http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/tests >> > >> >>/ >> > >> >>bin/js-debug/halo/views/CheckBoxTests.js> >> > >> >> [java] using SWC: >> > >> >> > >> >>>>>>c:\Jenkins\workspace\flex-falcon\compiler\generated\dist\sdk\framewor >>>>>>ks >> > >>>>\l >> > >> >>i >> > >> >>bs\player\11.7\playerglobal.swc >> > >> >> [java] using SWC: >> > >> >>< >> > >> >> > >>http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/frameworks/lib >> > >> >>s >> > >> >>/Binding.swc> >> > >> >> [java] using SWC: >> > >> >>< >> > >> >> > >>http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/frameworks/lib >> > >> >>s >> > >> >>/Charts.swc> >> > >> >> [java] using SWC: >> > >> >>< >> > >> >> > >>http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/frameworks/lib >> > >> >>s >> > >> >>/Collections.swc> >> > >> >> [java] using SWC: >> > >> >>< >> > >> >> > >>http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/frameworks/lib >> > >> >>s >> > >> >>/Core.swc> >> > >> >> [java] using SWC: >> > >> >>< >> > >> >> > >>http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/frameworks/lib >> > >> >>s >> > >> >>/CreateJS.swc> >> > >> >> [java] using SWC: >> > >> >>< >> > >> >> > >>http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/frameworks/lib >> > >> >>s >> > >> >>/DragDrop.swc> >> > >> >> [java] using SWC: >> > >> >>< >> > >> >> > >>http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/frameworks/lib >> > >> >>s >> > >> >>/Effects.swc> >> > >> >> [java] using SWC: >> > >> >>< >> > >> >> > >>http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/frameworks/lib >> > >> >>s >> > >> >>/Flat.swc> >> > >> >> [java] using SWC: >> > >> >>< >> > >> >> > >>http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/frameworks/lib >> > >> >>s >> > >> >>/Formatters.swc> >> > >> >> [java] using SWC: >> > >> >>< >> > >> >> > >>http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/frameworks/lib >> > >> >>s >> > >> >>/GoogleMaps.swc> >> > >> >> [java] using SWC: >> > >> >>< >> > >> >> > >>http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/frameworks/lib >> > >> >>s >> > >> >>/Graphics.swc> >> > >> >> [java] using SWC: >> > >> >>< >> > >> >> > >>http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/frameworks/lib >> > >> >>s >> > >> >>/HTML.swc> >> > >> >> [java] using SWC: >> > >> >>< >> > >> >> > >>http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/frameworks/lib >> > >> >>s >> > >> >>/HTML5.swc> >> > >> >> [java] using SWC: >> > >> >>< >> > >> >> > >>http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/frameworks/lib >> > >> >>s >> > >> >>/jQuery.swc> >> > >> >> [java] using SWC: >> > >> >>< >> > >> >> > >>http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/frameworks/lib >> > >> >>s >> > >> >>/Mobile.swc> >> > >> >> [java] using SWC: >> > >> >>< >> > >> >> > >>http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/frameworks/lib >> > >> >>s >> > >> >>/Network.swc> >> > >> >> [java] Dependencies calculated for >> > >> >>'< >> > >> >> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/test >> > >> >>s >> > >> >>/bin/js-debug/BasicTestsApp.js'> >> > >> >> [java] Dependencies calculated for >> > >> >>'< >> > >> >> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/test >> > >> >>s >> > >> >>/bin/js-debug/org/apache/flex/utils/EffectTimer.js'> >> > >> >> [java] Dependencies calculated for >> > >> >>'< >> > >> >> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/test >> > >> >>s >> > >> >>/bin/js-debug/org/apache/flex/core/ValuesManager.js'> >> > >> >> [java] Dependencies calculated for >> > >> >>'< >> > >> >> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/test >> > >> >>s >> > >> >>/bin/js-debug/org/apache/flex/events/EventDispatcher.js'> >> > >> >> [java] Dependencies calculated for >> > >> >>'< >> > >> >> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/test >> > >> >>s >> > >> >>/bin/js-debug/org/apache/flex/events/IEventDispatcher.js'> >> > >> >> [java] Dependencies calculated for >> > >> >>'< >> > >> >> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/test >> > >> >>s >> > >> >>/bin/js-debug/org/apache/flex/events/ValueEvent.js'> >> > >> >> [java] Dependencies calculated for >> > >> >>'< >> > >> >> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/test >> > >> >>s >> > >> >>/bin/js-debug/org/apache/flex/events/Event.js'> >> > >> >> [java] Dependencies calculated for >> > >> >>'< >> > >> >> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/test >> > >> >>s >> > >> >>/bin/js-debug/org/apache/flex/core/IEffectTimer.js'> >> > >> >> [java] Dependencies calculated for >> > >> >>'< >> > >> >> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/test >> > >> >>s >> > >> >>/bin/js-debug/org/apache/flex/core/SimpleStatesImpl.js'> >> > >> >> [java] Dependencies calculated for >> > >> >>'< >> > >> >> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/test >> > >> >>s >> > >> >>/bin/js-debug/org/apache/flex/events/ValueChangeEvent.js'> >> > >> >> [java] Dependencies calculated for >> > >> >>'< >> > >> >> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/test >> > >> >>s >> > >> >>/bin/js-debug/org/apache/flex/states/AddItems.js'> >> > >> >> [java] Dependencies calculated for >> > >> >>'< >> > >> >> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/test >> > >> >>s >> > >> >>/bin/js-debug/org/apache/flex/states/ItemAndDescriptor.js'> >> > >> >> [java] Dependencies calculated for >> > >> >>'< >> > >> >> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/test >> > >> >>s >> > >> >>/bin/js-debug/org/apache/flex/core/IDocument.js'> >> > >> >> [java] Dependencies calculated for >> > >> >>'< >> > >> >> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/test >> > >> >>s >> > >> >>/bin/js-debug/org/apache/flex/states/SetEventHandler.js'> >> > >> >> [java] Dependencies calculated for >> > >> >>'< >> > >> >> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/test >> > >> >>s >> > >> >>/bin/js-debug/org/apache/flex/states/SetProperty.js'> >> > >> >> [java] Dependencies calculated for >> > >> >>'< >> > >> >> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/test >> > >> >>s >> > >> >>/bin/js-debug/org/apache/flex/utils/MXMLDataInterpreter.js'> >> > >> >> [java] Dependencies calculated for >> > >> >>'< >> > >> >> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/test >> > >> >>s >> > >> >>/bin/js-debug/org/apache/flex/core/IBead.js'> >> > >> >> [java] Dependencies calculated for >> > >> >>'< >> > >> >> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/test >> > >> >>s >> > >> >>/bin/js-debug/org/apache/flex/core/IContainer.js'> >> > >> >> [java] Dependencies calculated for >> > >> >>'< >> > >> >> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/test >> > >> >>s >> > >> >>/bin/js-debug/org/apache/flex/core/IParent.js'> >> > >> >> [java] Dependencies calculated for >> > >> >>'< >> > >> >> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/test >> > >> >>s >> > >> >>/bin/js-debug/org/apache/flex/core/IMXMLDocument.js'> >> > >> >> [java] Dependencies calculated for >> > >> >>'< >> > >> >> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/test >> > >> >>s >> > >> >>/bin/js-debug/org/apache/flex/core/IStrand.js'> >> > >> >> [java] Dependencies calculated for >> > >> >>'< >> > >> >> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/test >> > >> >>s >> > >> >>/bin/js-debug/org/apache/flex/core/IUIBase.js'> >> > >> >> [java] Dependencies calculated for >> > >> >>'< >> > >> >> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/test >> > >> >>s >> > >> >>/bin/js-debug/org/apache/flex/core/IStatesImpl.js'> >> > >> >> [java] Dependencies calculated for >> > >> >>'< >> > >> >> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/test >> > >> >>s >> > >> >>/bin/js-debug/org/apache/flex/core/IStatesObject.js'> >> > >> >> [java] Dependencies calculated for >> > >> >>'< >> > >> >> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/test >> > >> >>s >> > >> >> > >> >>>>>>/bin/js-debug/org/apache/flex/html/supportClasses/ContainerContentAre >>>>>>a. >> > >>>>js >> > >> >>' >> > >> >>> >> > >> >> [java] Dependencies calculated for >> > >> >>'< >> > >> >> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/test >> > >> >>s >> > >> >>/bin/js-debug/org/apache/flex/core/UIBase.js'> >> > >> >> [java] Dependencies calculated for >> > >> >>'< >> > >> >> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/test >> > >> >>s >> > >> >>/bin/js-debug/org/apache/flex/core/HTMLElementWrapper.js'> >> > >> >> [java] Dependencies calculated for >> > >> >>'< >> > >> >> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/test >> > >> >>s >> > >> >>/bin/js-debug/org/apache/flex/events/BrowserEvent.js'> >> > >> >> [java] Dependencies calculated for >> > >> >>'< >> > >> >> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/test >> > >> >>s >> > >> >>/bin/js-debug/org/apache/flex/events/ElementEvents.js'> >> > >> >> [java] Dependencies calculated for >> > >> >>'< >> > >> >> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/test >> > >> >>s >> > >> >>/bin/js-debug/org/apache/flex/core/IBeadModel.js'> >> > >> >> [java] Dependencies calculated for >> > >> >>'< >> > >> >> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/test >> > >> >>s >> > >> >>/bin/js-debug/org/apache/flex/core/IBeadController.js'> >> > >> >> [java] Dependencies calculated for >> > >> >>'< >> > >> >> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/test >> > >> >>s >> > >> >>/bin/js-debug/org/apache/flex/core/IBeadView.js'> >> > >> >> [java] Dependencies calculated for >> > >> >>'< >> > >> >> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/test >> > >> >>s >> > >> >>/bin/js-debug/org/apache/flex/core/IFlexJSElement.js'> >> > >> >> [java] Dependencies calculated for >> > >> >>'< >> > >> >> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/test >> > >> >>s >> > >> >>/bin/js-debug/org/apache/flex/core/ILayoutChild.js'> >> > >> >> [java] Dependencies calculated for >> > >> >>'< >> > >> >> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/test >> > >> >>s >> > >> >>/bin/js-debug/org/apache/flex/core/IChild.js'> >> > >> >> [java] Dependencies calculated for >> > >> >>'< >> > >> >> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/test >> > >> >>s >> > >> >>/bin/js-debug/org/apache/flex/core/IMeasurementBead.js'> >> > >> >> [java] Dependencies calculated for >> > >> >>'< >> > >> >> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/test >> > >> >>s >> > >> >>/bin/js-debug/org/apache/flex/core/IParentIUIBase.js'> >> > >> >> [java] Dependencies calculated for >> > >> >>'< >> > >> >> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/test >> > >> >>s >> > >> >>/bin/js-debug/org/apache/flex/core/IStrandWithModel.js'> >> > >> >> [java] Dependencies calculated for >> > >> >>'< >> > >> >> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/test >> > >> >>s >> > >> >>/bin/js-debug/org/apache/flex/core/IStyleableObject.js'> >> > >> >> [java] Dependencies calculated for >> > >> >>'< >> > >> >> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/test >> > >> >>s >> > >> >>/bin/js-debug/org/apache/flex/core/IContentView.js'> >> > >> >> [java] Dependencies calculated for >> > >> >>'< >> > >> >> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/test >> > >> >>s >> > >> >>/bin/js-debug/org/apache/flex/html/beads/layouts/BasicLayout.js'> >> > >> >> [java] Dependencies calculated for >> > >> >>'< >> > >> >> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/test >> > >> >>s >> > >> >>/bin/js-debug/org/apache/flex/core/IBeadLayout.js'> >> > >> >> [java] Dependencies calculated for >> > >> >>'< >> > >> >> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/test >> > >> >>s >> > >> >>/bin/js-debug/org/apache/flex/core/ILayoutHost.js'> >> > >> >> [java] Dependencies calculated for >> > >> >>'< >> > >> >> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/test >> > >> >>s >> > >> >>/bin/js-debug/org/apache/flex/html/supportClasses/Viewport.js'> >> > >> >> [java] Dependencies calculated for >> > >> >>'< >> > >> >> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/test >> > >> >>s >> > >> >>/bin/js-debug/org/apache/flex/geom/Size.js'> >> > >> >> [java] Dependencies calculated for >> > >> >>'< >> > >> >> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/test >> > >> >>s >> > >> >>/bin/js-debug/org/apache/flex/utils/CSSContainerUtils.js'> >> > >> >> [java] Dependencies calculated for >> > >> >>'< >> > >> >> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/test >> > >> >>s >> > >> >>/bin/js-debug/org/apache/flex/geom/Rectangle.js'> >> > >> >> [java] Dependencies calculated for >> > >> >>'< >> > >> >> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/test >> > >> >>s >> > >> >>/bin/js-debug/org/apache/flex/utils/CSSUtils.js'> >> > >> >> [java] Dependencies calculated for >> > >> >>'< >> > >> >> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/test >> > >> >>s >> > >> >>/bin/js-debug/org/apache/flex/core/IViewport.js'> >> > >> >> [java] Dependencies calculated for >> > >> >>'< >> > >> >> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/test >> > >> >>s >> > >> >>/bin/js-debug/org/apache/flex/html/beads/ContainerView.js'> >> > >> >> [java] Dependencies calculated for >> > >> >>'< >> > >> >> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/test >> > >> >>s >> > >> >>/bin/js-debug/org/apache/flex/core/BeadViewBase.js'> >> > >> >> [java] Dependencies calculated for >> > >> >>'< >> > >> >> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/test >> > >> >>s >> > >> >>/bin/js-debug/org/apache/flex/core/IContainerView.js'> >> > >> >> [java] Dependencies calculated for >> > >> >>'< >> > >> >> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/test >> > >> >>s >> > >> >>/bin/js-debug/org/apache/flex/core/IContentViewHost.js'> >> > >> >> [java] Dependencies calculated for >> > >> >>'< >> > >> >> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/test >> > >> >>s >> > >> >>/bin/js-debug/org/apache/flex/core/IViewportModel.js'> >> > >> >> [java] Dependencies calculated for >> > >> >>'< >> > >> >> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/test >> > >> >>s >> > >> >>/bin/js-debug/org/apache/flex/html/beads/IBackgroundBead.js'> >> > >> >> [java] Dependencies calculated for >> > >> >>'< >> > >> >> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/test >> > >> >>s >> > >> >>/bin/js-debug/org/apache/flex/html/beads/IBorderBead.js'> >> > >> >> [java] Dependencies calculated for >> > >> >>'< >> > >> >> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/test >> > >> >>s >> > >> >>>>/bin/js-debug/org/apache/flex/html/beads/models/ViewportModel.js'> >> > >> >> [java] Dependencies calculated for >> > >> >>'< >> > >> >> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/test >> > >> >>s >> > >> >> > >> >>>>>>/bin/js-debug/org/apache/flex/html/beads/DataItemRendererFactoryForAr >>>>>>ra >> > >>>>yL >> > >> >>i >> > >> >>st.js'> >> > >> >> [java] Dependencies calculated for >> > >> >>'< >> > >> >> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/test >> > >> >>s >> > >> >>/bin/js-debug/org/apache/flex/collections/ArrayList.js'> >> > >> >> [java] Dependencies calculated for >> > >> >>'< >> > >> >> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/test >> > >> >>s >> > >> >>/bin/js-debug/org/apache/flex/collections/ICollection.js'> >> > >> >> [java] Dependencies calculated for >> > >> >>'< >> > >> >> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/test >> > >> >>s >> > >> >>/bin/js-debug/org/apache/flex/core/SimpleCSSStyles.js'> >> > >> >> [java] Dependencies calculated for >> > >> >>'< >> > >> >> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/test >> > >> >>s >> > >> >>/bin/js-debug/org/apache/flex/html/List.js'> >> > >> >> [java] Dependencies calculated for >> > >> >>'< >> > >> >> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/test >> > >> >>s >> > >> >>/bin/js-debug/org/apache/flex/core/ListBase.js'> >> > >> >> [java] Dependencies calculated for >> > >> >>'< >> > >> >> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/test >> > >> >>s >> > >> >>/bin/js-debug/org/apache/flex/core/ListBaseStrandChildren.js'> >> > >> >> [java] Dependencies calculated for >> > >> >>'< >> > >> >> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/test >> > >> >>s >> > >> >>/bin/js-debug/org/apache/flex/html/beads/ListView.js'> >> > >> >> [java] Dependencies calculated for >> > >> >>'< >> > >> >> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/test >> > >> >>s >> > >> >>/bin/js-debug/org/apache/flex/core/IItemRendererParent.js'> >> > >> >> [java] Dependencies calculated for >> > >> >>'< >> > >> >> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/test >> > >> >>s >> > >> >>/bin/js-debug/org/apache/flex/core/IRollOverModel.js'> >> > >> >> [java] Dependencies calculated for >> > >> >>'< >> > >> >> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/test >> > >> >>s >> > >> >>/bin/js-debug/org/apache/flex/core/ISelectableItemRenderer.js'> >> > >> >> [java] Dependencies calculated for >> > >> >>'< >> > >> >> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/test >> > >> >>s >> > >> >>/bin/js-debug/org/apache/flex/core/IItemRenderer.js'> >> > >> >> [java] Dependencies calculated for >> > >> >>'< >> > >> >> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/test >> > >> >>s >> > >> >>/bin/js-debug/org/apache/flex/core/ISelectionModel.js'> >> > >> >> [java] Dependencies calculated for >> > >> >>'< >> > >> >> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/test >> > >> >>s >> > >> >>/bin/js-debug/org/apache/flex/html/beads/IListView.js'> >> > >> >> [java] Dependencies calculated for >> > >> >>'< >> > >> >> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/test >> > >> >>s >> > >> >> > >> >>>>>>/bin/js-debug/org/apache/flex/html/beads/models/ListPresentationModel >>>>>>.j >> > >>>>s' >> > >> >>> >> > >> >> [java] Dependencies calculated for >> > >> >>'< >> > >> >> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/test >> > >> >>s >> > >> >>/bin/js-debug/org/apache/flex/core/IListPresentationModel.js'> >> > >> >> [java] Dependencies calculated for >> > >> >>'< >> > >> >> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/test >> > >> >>s >> > >> >> > >> >>>>>>/bin/js-debug/org/apache/flex/core/IDataProviderItemRendererMapper.js >>>>>>'> >> > >> >> [java] Dependencies calculated for >> > >> >>'< >> > >> >> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/test >> > >> >>s >> > >> >>/bin/js-debug/org/apache/flex/core/IItemRendererClassFactory.js'> >> > >> >> [java] Dependencies calculated for >> > >> >>'< >> > >> >> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/test >> > >> >>s >> > >> >>/bin/js-debug/org/apache/flex/core/IItemRendererProvider.js'> >> > >> >> [java] Dependencies calculated for >> > >> >>'< >> > >> >> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/test >> > >> >>s >> > >> >>/bin/js-debug/org/apache/flex/html/supportClasses/DataGroup.js'> >> > >> >> [java] Dependencies calculated for >> > >> >>'< >> > >> >> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/test >> > >> >>s >> > >> >>/bin/js-debug/org/apache/flex/events/ItemAddedEvent.js'> >> > >> >> [java] Dependencies calculated for >> > >> >>'< >> > >> >> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/test >> > >> >>s >> > >> >>/bin/js-debug/org/apache/flex/events/CustomEvent.js'> >> > >> >> [java] Dependencies calculated for >> > >> >>'< >> > >> >> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/test >> > >> >>s >> > >> >>/bin/js-debug/org/apache/flex/events/ItemRemovedEvent.js'> >> > >> >> [java] Dependencies calculated for >> > >> >>'< >> > >> >> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/test >> > >> >>s >> > >> >> > >> >>>>>>/bin/js-debug/org/apache/flex/html/supportClasses/DataItemRenderer.js >>>>>>'> >> > >> >> [java] Dependencies calculated for >> > >> >>'< >> > >> >> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/test >> > >> >>s >> > >> >> > >> >>>>>>/bin/js-debug/org/apache/flex/html/beads/controllers/ItemRendererMous >>>>>>eC >> > >>>>on >> > >> >>t >> > >> >>roller.js'> >> > >> >> [java] Dependencies calculated for >> > >> >>'< >> > >> >> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/test >> > >> >>s >> > >> >>/bin/js-debug/org/apache/flex/events/ItemClickedEvent.js'> >> > >> >> [java] Dependencies calculated for >> > >> >>'< >> > >> >> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/test >> > >> >>s >> > >> >> > >> >>>>>>/bin/js-debug/org/apache/flex/html/supportClasses/UIItemRendererBase. >>>>>>js >> > >>>>'> >> > >> >> [java] Dependencies calculated for >> > >> >>'< >> > >> >> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/test >> > >> >>s >> > >> >>>>/bin/js-debug/org/apache/flex/html/beads/layouts/VerticalLayout.js'> >> > >> >> [java] Dependencies calculated for >> > >> >>'< >> > >> >> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/test >> > >> >>s >> > >> >> > >> >>>>>>/bin/js-debug/org/apache/flex/html/beads/controllers/ListSingleSelect >>>>>>io >> > >>>>nM >> > >> >>o >> > >> >>useController.js'> >> > >> >> [java] Dependencies calculated for >> > >> >>'< >> > >> >> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/test >> > >> >>s >> > >> >>/bin/js-debug/org/apache/flex/core/ItemRendererClassFactory.js'> >> > >> >> [java] Dependencies calculated for >> > >> >>'< >> > >> >> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/test >> > >> >>s >> > >> >>/bin/js-debug/org/apache/flex/core/ClassFactory.js'> >> > >> >> [java] Dependencies calculated for >> > >> >>'< >> > >> >> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/test >> > >> >>s >> > >> >>/bin/js-debug/org/apache/flex/core/IFactory.js'> >> > >> >> [java] Dependencies calculated for >> > >> >>'< >> > >> >> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/test >> > >> >>s >> > >> >>/bin/js-debug/org/apache/flex/core/Strand.js'> >> > >> >> [java] Dependencies calculated for >> > >> >>'< >> > >> >> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/test >> > >> >>s >> > >> >> > >> >>>>>>/bin/js-debug/org/apache/flex/html/supportClasses/StringItemRenderer. >>>>>>js >> > >>>>'> >> > >> >> [java] Dependencies calculated for >> > >> >>'< >> > >> >> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/test >> > >> >>s >> > >> >>/bin/js-debug/org/apache/flex/html/beads/ITextItemRenderer.js'> >> > >> >> [java] Dependencies calculated for >> > >> >>'< >> > >> >> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/test >> > >> >>s >> > >> >>>>/bin/js-debug/org/apache/flex/html/beads/models/DataGridModel.js'> >> > >> >> [java] Dependencies calculated for >> > >> >>'< >> > >> >> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/test >> > >> >>s >> > >> >> > >> >>>>>>/bin/js-debug/org/apache/flex/html/beads/models/ArrayListSelectionMod >>>>>>el >> > >>>>.j >> > >> >>s >> > >> >>'> >> > >> >> [java] Dependencies calculated for >> > >> >>'< >> > >> >> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/test >> > >> >>s >> > >> >>/bin/js-debug/org/apache/flex/core/IDataGridModel.js'> >> > >> >> [java] Dependencies calculated for >> > >> >>'< >> > >> >> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/test >> > >> >>s >> > >> >> > >> >>>>>>/bin/js-debug/org/apache/flex/html/beads/DataItemRendererFactoryForAr >>>>>>ra >> > >>>>yD >> > >> >>a >> > >> >>ta.js'> >> > >> >> [java] Dependencies calculated for >> > >> >>'< >> > >> >> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/test >> > >> >>s >> > >> >> > >> >>>>>>/bin/js-debug/org/apache/flex/html/supportClasses/ScrollingViewport.j >>>>>>s' >> > >>>>> >> > >> >> [java] Dependencies calculated for >> > >> >>'< >> > >> >> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/test >> > >> >>s >> > >> >> > >> >>>>>>/bin/js-debug/org/apache/flex/html/beads/models/ArraySelectionModel.j >>>>>>s' >> > >>>>> >> > >> >> [java] Dependencies calculated for >> > >> >>'< >> > >> >> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/test >> > >> >>s >> > >> >>/bin/js-debug/org/apache/flex/core/Application.js'> >> > >> >> [java] Dependencies calculated for >> > >> >>'< >> > >> >> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/test >> > >> >>s >> > >> >>/bin/js-debug/org/apache/flex/core/ApplicationBase.js'> >> > >> >> [java] Dependencies calculated for >> > >> >>'< >> > >> >> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/test >> > >> >>s >> > >> >>/bin/js-debug/org/apache/flex/core/IFlexInfo.js'> >> > >> >> [java] Dependencies calculated for >> > >> >>'< >> > >> >> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/test >> > >> >>s >> > >> >>/bin/js-debug/org/apache/flex/core/SimpleCSSValuesImpl.js'> >> > >> >> [java] Dependencies calculated for >> > >> >>'< >> > >> >> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/test >> > >> >>s >> > >> >>/bin/js-debug/org/apache/flex/core/IValuesImpl.js'> >> > >> >> [java] Dependencies calculated for >> > >> >>'< >> > >> >> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/test >> > >> >>s >> > >> >>/bin/js-debug/BasicTests.js'> >> > >> >> [java] Dependencies calculated for >> > >> >>'< >> > >> >> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/test >> > >> >>s >> > >> >>/bin/js-debug/org/apache/flex/core/ViewBase.js'> >> > >> >> [java] Dependencies calculated for >> > >> >>'< >> > >> >> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/test >> > >> >>s >> > >> >>/bin/js-debug/org/apache/flex/core/ContainerBase.js'> >> > >> >> [java] Dependencies calculated for >> > >> >>'< >> > >> >> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/test >> > >> >>s >> > >> >>>>/bin/js-debug/org/apache/flex/core/ContainerBaseStrandChildren.js'> >> > >> >> [java] Dependencies calculated for >> > >> >>'< >> > >> >> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/test >> > >> >>s >> > >> >>/bin/js-debug/org/apache/flex/core/IApplicationView.js'> >> > >> >> [java] Dependencies calculated for >> > >> >>'< >> > >> >> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/test >> > >> >>s >> > >> >>/bin/js-debug/org/apache/flex/core/IPopUpHost.js'> >> > >> >> [java] Dependencies calculated for >> > >> >>'< >> > >> >> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/test >> > >> >>s >> > >> >>/bin/js-debug/org/apache/flex/states/State.js'> >> > >> >> [java] Dependencies calculated for >> > >> >>'< >> > >> >> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/test >> > >> >>s >> > >> >>/bin/js-debug/halo/views/ButtonTests.js'> >> > >> >> [java] Dependencies calculated for >> > >> >>'< >> > >> >> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/test >> > >> >>s >> > >> >>/bin/js-debug/shim/VBox.js'> >> > >> >> [java] Dependencies calculated for >> > >> >>'< >> > >> >> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/test >> > >> >>s >> > >> >>/bin/js-debug/org/apache/flex/html/Container.js'> >> > >> >> [java] Dependencies calculated for >> > >> >>'< >> > >> >> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/test >> > >> >>s >> > >> >>/bin/js-debug/org/apache/flex/html/TextButton.js'> >> > >> >> [java] Dependencies calculated for >> > >> >>'< >> > >> >> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/test >> > >> >>s >> > >> >>/bin/js-debug/org/apache/flex/html/Button.js'> >> > >> >> [java] Dependencies calculated for >> > >> >>'< >> > >> >> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/test >> > >> >>s >> > >> >>/bin/js-debug/org/apache/flex/html/Label.js'> >> > >> >> [java] Dependencies calculated for >> > >> >>'< >> > >> >> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/test >> > >> >>s >> > >> >>/bin/js-debug/halo/views/CheckBoxTests.js'> >> > >> >> [java] Dependencies calculated for >> > >> >>'< >> > >> >> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/test >> > >> >>s >> > >> >>/bin/js-debug/org/apache/flex/html/CheckBox.js'> >> > >> >> [java] Dependencies calculated for >> > >> >>'< >> > >> >> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/test >> > >> >>s >> > >> >>/bin/js-debug/org/apache/flex/utils/MixinManager.js'> >> > >> >> [java] Dependencies calculated for >> > >> >>'< >> > >> >> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/test >> > >> >>s >> > >> >>/bin/js-debug/org/apache/flex/core/CSSFontFaceBead.js'> >> > >> >> [java] Dependencies calculated for >> > >> >>'< >> > >> >> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/test >> > >> >>s >> > >> >>/bin/js-debug/org/apache/flex/utils/Language.js'> >> > >> >> [java] Jan 12, 2016 11:12:16 AM >> > >> >>com.google.javascript.jscomp.LoggerErrorManager println >> > >> >> [java] WARNING: >> > >> >> > >> >>>>>>c:/Jenkins/workspace/flex-asjs/mustella/tests/bin/js-debug/org/apache >>>>>>/f >> > >>>>le >> > >> >>x >> > >> >>/utils/Language.js:345: WARNING - goog.goog is never defined >> > >> >> [java] var /** @type {Function} */ boundMethod = >> > >> >>goog.goog.bind(fn, object); >> > >> >> [java] ^ >> > >> >> [java] >> > >> >> [java] Jan 12, 2016 11:12:16 AM >> > >> >>com.google.javascript.jscomp.LoggerErrorManager println >> > >> >> [java] WARNING: >> > >> >> > >> >>>>>>c:/Jenkins/workspace/flex-asjs/mustella/tests/bin/js-debug/org/apache >>>>>>/f >> > >>>>le >> > >> >>x >> > >> >>/utils/MXMLDataInterpreter.js:216: WARNING - goog.goog is never >> > >>defined >> > >> >> [java] comp.addEventListener(name, goog.goog.bind(value, >> > >> >>document)); >> > >> >> [java] ^ >> > >> >> [java] >> > >> >> [java] Jan 12, 2016 11:12:16 AM >> > >> >>com.google.javascript.jscomp.LoggerErrorManager println >> > >> >> [java] WARNING: >> > >> >> > >> >>>>>>c:/Jenkins/workspace/flex-asjs/mustella/tests/bin/js-debug/org/apache >>>>>>/f >> > >>>>le >> > >> >>x >> > >> >>/utils/MXMLDataInterpreter.js:342: WARNING - goog.goog is never >> > >>defined >> > >> >> [java] host.addEventListener(name, goog.goog.bind(value, >> > >>host)); >> > >> >> [java] ^ >> > >> >> [java] >> > >> >> [java] Jan 12, 2016 11:12:16 AM >> > >> >>com.google.javascript.jscomp.LoggerErrorManager printSummary >> > >> >> [java] WARNING: 0 error(s), 3 warning(s), 96.06584064393597% >> > >>typed >> > >> >> [java] The project 'BasicTestsApp' has been successfully >> compiled >> > >> >>and optimized. >> > >> >> [java] Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8 >> > >> >> >> > >> >>basictests-compile-java: >> > >> >> [delete] Deleting directory >> > >> >>< >> > >> >> > >>http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/java/ >> > >> >>b >> > >> >>in> >> > >> >> [mkdir] Created dir: >> > >> >>< >> > >> >> > >>http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/java/ >> > >> >>b >> > >> >>in> >> > >> >> [javac] >> > >> >>< >> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/build.xml >> > >> >:115 >> > >> >>5 >> > >> >>: warning: 'includeantruntime' was not set, defaulting to >> > >> >>build.sysclasspath=last; set to false for repeatable builds >> > >> >> [javac] Compiling 11 source files to >> > >> >>< >> > >> >> > >>http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/java/ >> > >> >>b >> > >> >>in> >> > >> >> >> > >> >>basictests-run-js: >> > >> >> [echo] >> > >> >>url=file://< >> > >> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mus >> > >> >>t >> > >> >>ella/tests/basicTests/bin/js-debug/index.html> >> > >> >> [echo] >> > >> >>script=< >> > >> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustell >> > >> >>a >> > >> >>/tests/basicTests/halo/scripts/ButtonTestScript.mxml> >> > >> >> [echo] >> > >> >>script=< >> > >> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustell >> > >> >>a >> > >> >>/tests/basicTests/halo/scripts/CheckBoxTestScript.mxml> >> > >> >> [java] >> > >> >>file://< >> > >> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustell >> > >> >>a >> > >> >>/tests/bin/js-debug/index.html> >> > >> >> [java] running script >> > >> >>< >> > >> >> > >>http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/mustella/tests >> > >> >>/ >> > >> >>basicTests/halo/scripts/ButtonTestScript.mxml> >> > >> >> [java] test case count: 2 >> > >> >> [java] target is undefined >> > >> >> [java] Command duration or timeout: 40 milliseconds >> > >> >> [java] Build info: version: '2.48.2', revision: '41bccdd', >> time: >> > >> >>'2015-10-09 19:55:52' >> > >> >> [java] System info: host: 'apacheflexbuild', ip: >> '100.68.242.38', >> > >> >>os.name: 'Windows Server 2008 R2', os.arch: 'amd64', os.version: >> > >>'6.1', >> > >> >>java.version: '1.7.0_55' >> > >> >> [java] Session ID: bb0c62e6-1d03-4591-9bf7-b4ec89c8aaf0 >> > >> >> [java] Driver info: >>org.openqa.selenium.firefox.FirefoxDriver >> > >> >> [java] Capabilities [{platform=WINDOWS, acceptSslCerts=true, >> > >> >>javascriptEnabled=true, cssSelectorsEnabled=true, >> > >>databaseEnabled=true, >> > >> >>browserName=firefox, handlesAlerts=true, nativeEvents=false, >> > >> >>webStorageEnabled=true, rotatable=false, >> locationContextEnabled=true, >> > >> >>applicationCacheEnabled=true, takesScreenshot=true, >>version=43.0.1}] >> > >> >> [java] Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8 >> > >> >> >> > >> >>BUILD FAILED >> > >> >>< >> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/ws/build.xml >> > >> >:105 >> > >> >>1 >> > >> >>: Java returned: 1 >> > >> >> >> > >> >>Total time: 28 minutes 22 seconds >> > >> >>Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8 >> > >> >>Build step 'Invoke Ant' marked build as failure >> > >> >>Skipped archiving because build is not successful >> > >> > >> > >> >> > >> >> > >> > >>