This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package ru.trylogic.framework.examples.dummy | |
{ | |
import mx.core.ClassFactory; | |
import tl.adapters.nativeDisplayList.NativeBootstrap; | |
import tl.adapters.starling.StarlingBootstrap; | |
import tl.core.IBootstrap; | |
import tl.core.MultiModuleBootstrap; | |
public class Bootstrap extends MultiModuleBootstrap |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package ; | |
import haxe.unit.TestCase; | |
import bindx.IBindable; | |
using bindx.Bind; | |
/** | |
* ... | |
* @author deep <[email protected]> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class TestBindx extends TestCase implements IBindable | |
{ | |
public var def:Int; | |
@bindable public function toString():String { | |
return '$def!'; | |
} | |
public function testBasic() { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
echo "Hello, world!" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
echo -e "\n\n\n" | ssh-keygen -t rsa | |
ssh-keyscan -H github.com >> ~/.ssh/known_hosts | |
ls -la ~/.ssh/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0"?> | |
<gui:ContainerBase xmlns:fx="http://ns.adobe.com/mxml/2009" | |
xmlns:gui="http://www.trylogic.ru/gui" | |
xmlns:trylogic="http://www.trylogic.ru/" | |
xmlns:s="library://ns.adobe.com/flex/spark"> | |
<gui:controllerClass>ru.trylogic.dummy.views.dummyApplicationView.DummyApplicationViewController</gui:controllerClass> | |
<gui:eventMaps> | |
<trylogic:EventMap source="{myButton}" type="tap" destination="{new Event('myButtonTapped')}" /> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0"?> | |
<native:Bootstrap xmlns:fx="http://ns.adobe.com/mxml/2009" | |
xmlns:native="http://www.trylogic.ru/native" | |
xmlns:services="ru.trylogic.dummy.services.*" | |
xmlns:trylogic="http://www.trylogic.ru/ioc/"> | |
<fx:Metadata> | |
[SWF(width="1024", height="768", frameRate="60", backgroundColor="0x909090")] | |
</fx:Metadata> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package | |
{ | |
import flash.display.Sprite; | |
public class FunctionCallTests extends Sprite | |
{ | |
public function FunctionCallTests() | |
{ | |
traceMyArgs( $[this, "yo"] ); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package | |
{ | |
import flash.display.Sprite; | |
import flash.events.Event; | |
[SWF(frameRate="1")] | |
public class DSL extends Sprite | |
{ | |
private var myModel : MyModel = new MyModel(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package view.testView | |
{ | |
import tl.viewController.IVIewController; | |
public interface ITestViewController extends IVIewController, ITestViewDelegate | |
{ | |
} | |
} |
NewerOlder