├── .github └── workflows │ ├── maven-publish.yml │ └── maven-test.yml ├── .gitignore ├── LICENSE ├── README.md ├── ayarc.aya ├── base ├── __aya__.aya ├── block.aya ├── char.aya ├── importlib.aya ├── interpreter.aya ├── list.aya ├── num.aya ├── str.aya ├── sym.aya └── test.aya ├── examples ├── 100doors.aya ├── README.md ├── account.aya ├── arg_unpacking.aya ├── asciitable.aya ├── asciitrain.aya ├── ayarc_eclipse.aya ├── bst.aya ├── canvas │ ├── attractor.aya │ ├── boids.aya │ ├── bouncing.aya │ ├── circles.aya │ ├── color_table.aya │ ├── color_typewriter.aya │ ├── cube.aya │ ├── elementary_ca.aya │ ├── graphics.aya │ ├── julia.aya │ ├── life.aya │ ├── logo.aya │ ├── mandelbrot.aya │ ├── mouse.aya │ ├── particles.aya │ └── vaporwave_city.aya ├── checked.aya ├── class.aya ├── collatz.aya ├── data │ ├── LakeHuron.csv │ ├── catalog.csv │ ├── iris.csv │ ├── simple.csv │ └── words.txt ├── defaultdict.aya ├── echo_client.aya ├── echo_server.aya ├── fibonacci.aya ├── fibs_below.aya ├── for_loop_list.aya ├── genetic.aya ├── greeter.aya ├── guessing_game.aya ├── hello_world.aya ├── inheritance.aya ├── isprime.aya ├── list_iterator.aya ├── loading.aya ├── mandelbrot.aya ├── misc.aya ├── monte_carlo.aya ├── nn.aya ├── nth_fib.aya ├── package_aya_libs.aya ├── plot │ ├── bernstein.aya │ ├── betting.aya │ ├── box_plot.aya │ ├── canvas_multiplot.aya │ ├── iris.aya │ ├── lakehuron.aya │ ├── lorenz.aya │ ├── multi.aya │ ├── normal.aya │ ├── numdx.aya │ ├── parametric.aya │ ├── pie_chart.aya │ ├── rainbow.aya │ ├── random_wave.aya │ ├── randomwalk.aya │ ├── scatter.aya │ ├── simple_functions.aya │ ├── sinsrs.aya │ └── weierstrass.aya ├── product.aya ├── quicksort.aya ├── quine.aya ├── rdatasets.aya ├── setindex.aya ├── singleton.aya ├── spell_check.aya ├── syntax.aya ├── thread.aya ├── tocamel.aya ├── traceback.aya ├── turtle │ ├── flower.aya │ ├── random.aya │ ├── snowflake.aya │ └── square.aya ├── vectorize.aya ├── visited_cities.aya └── xkcd_colors.aya ├── images ├── aya-demo.png ├── bernstein.png ├── discord.png ├── example-mosaic.png ├── lakehuron.png ├── logo.png ├── lorenz_attractor.png ├── mandel.png ├── quicksearch_window.png ├── sample_plot.png └── turtle.png ├── index.html ├── lib └── com │ └── mathlibrary │ └── com.mathlibrary.core │ ├── 1.0.0 │ ├── com.mathlibrary.core-1.0.0.jar │ └── com.mathlibrary.core-1.0.0.pom │ └── maven-metadata-local.xml ├── manual ├── blocks_and_functions.md ├── canvas_input.md ├── characters_and_strings.md ├── debugging.md ├── dictionaries.md ├── img │ ├── cube.gif │ ├── mandelbrot_example.png │ └── vaporwave_city.png ├── libraries.md ├── lists.md ├── metaprogramming.md ├── multithreading.md ├── number.md ├── running_and_installation.md ├── standard_library.md ├── syntax_overview.md ├── tour.md ├── type_annotations.md ├── user_types.md └── variables_and_scope.md ├── pom.xml ├── runnable └── linux │ └── aya ├── src ├── aya │ ├── AyaPrefs.java │ ├── AyaStdIO.java │ ├── AyaThread.java │ ├── CLIOptions.java │ ├── CallStack.java │ ├── DebugUtils.java │ ├── ExecutionRequest.java │ ├── ExecutionResult.java │ ├── ExecutionResultException.java │ ├── ExecutionResultSuccess.java │ ├── ExecutionResultUtils.java │ ├── InteractiveAya.java │ ├── ReprStream.java │ ├── StandaloneAya.java │ ├── StaticData.java │ ├── TypeIDs.java │ ├── eval │ │ ├── BlockEvaluator.java │ │ └── ExecutionContext.java │ ├── exceptions │ │ ├── ex │ │ │ ├── AyaException.java │ │ │ └── AyaExceptionInterface.java │ │ ├── parser │ │ │ ├── EndOfInputError.java │ │ │ ├── NotAnOperatorError.java │ │ │ ├── ParserException.java │ │ │ └── SyntaxError.java │ │ └── runtime │ │ │ ├── AssertError.java │ │ │ ├── AyaRuntimeException.java │ │ │ ├── AyaStackOverflowError.java │ │ │ ├── EmptyStackError.java │ │ │ ├── IOError.java │ │ │ ├── IndexError.java │ │ │ ├── InternalAyaRuntimeException.java │ │ │ ├── InvalidReferenceError.java │ │ │ ├── MathError.java │ │ │ ├── ThreadError.java │ │ │ ├── TypeError.java │ │ │ ├── UndefVarException.java │ │ │ ├── UnimplementedError.java │ │ │ ├── UserObjRuntimeException.java │ │ │ └── ValueError.java │ ├── ext │ │ ├── color │ │ │ └── ColorInstructionStore.java │ │ ├── date │ │ │ ├── DateInstructionStore.java │ │ │ ├── DescribeDateInstruction.java │ │ │ ├── FormatDateInstruction.java │ │ │ └── ParseDateInstruction.java │ │ ├── debug │ │ │ ├── DebugInstructionStore.java │ │ │ └── PauseDebugInstruction.java │ │ ├── dialog │ │ │ ├── DialogInstructionStore.java │ │ │ └── QuickDialog.java │ │ ├── download │ │ │ └── DownloadInstructionStore.java │ │ ├── fstream │ │ │ ├── FStreamInstructionStore.java │ │ │ ├── FStreamManager.java │ │ │ └── LegacyFStreamInstruction.java │ │ ├── graphics │ │ │ ├── Canvas.java │ │ │ ├── CanvasCursorListener.java │ │ │ ├── CanvasKeyListener.java │ │ │ ├── CanvasTable.java │ │ │ ├── GraphicsInstruction.java │ │ │ ├── GraphicsInstructionStore.java │ │ │ └── instruction │ │ │ │ ├── ArcGraphicsInstruction.java │ │ │ │ ├── ClearGraphicsInstruction.java │ │ │ │ ├── ClearRectGraphicsInstruction.java │ │ │ │ ├── CloseGraphicsInstruction.java │ │ │ │ ├── CopyRectGraphicsInstruction.java │ │ │ │ ├── DrawImageGraphicsInstruction.java │ │ │ │ ├── EllipseGraphicsInstruction.java │ │ │ │ ├── GetPixelsGraphicsInstruction.java │ │ │ │ ├── IsOpenGraphicsInstruction.java │ │ │ │ ├── LineGraphicsInstruction.java │ │ │ │ ├── ListFontsGraphicsInstruction.java │ │ │ │ ├── NewGraphicsInstruction.java │ │ │ │ ├── OvalGraphicsInstruction.java │ │ │ │ ├── PathGraphicsInstruction.java │ │ │ │ ├── PointsGraphicsInstruction.java │ │ │ │ ├── RectGraphicsInstruction.java │ │ │ │ ├── RotateGraphicsInstruction.java │ │ │ │ ├── RoundRectGraphicsInstruction.java │ │ │ │ ├── SaveGraphicsInstruction.java │ │ │ │ ├── ScaleGraphicsInstruction.java │ │ │ │ ├── SetAlphaGraphicsInstruction.java │ │ │ │ ├── SetBGColorGraphicsInstruction.java │ │ │ │ ├── SetColorAlphaGraphicsInstruction.java │ │ │ │ ├── SetColorGraphicsInstruction.java │ │ │ │ ├── SetFontGraphicsInstruction.java │ │ │ │ ├── SetPaintGradGraphicsInstruction.java │ │ │ │ ├── SetStrokeGraphicsInstruction.java │ │ │ │ ├── SetStrokeWidthGraphicsInstruction.java │ │ │ │ ├── ShearGraphicsInstruction.java │ │ │ │ ├── ShowGraphicsInstruction.java │ │ │ │ ├── TextGraphicsInstruction.java │ │ │ │ ├── TranslateGraphicsInstruction.java │ │ │ │ ├── ViewmatGraphicsInstruction.java │ │ │ │ ├── cursor │ │ │ │ ├── ClickEventsInstruction.java │ │ │ │ ├── MoveEventsInstruction.java │ │ │ │ └── PressedButtonsInstruction.java │ │ │ │ └── keyboard │ │ │ │ ├── PressedKeysInstruction.java │ │ │ │ └── TypedCharsInstruction.java │ │ ├── image │ │ │ ├── AyaImage.java │ │ │ ├── Channel.java │ │ │ ├── ImageHelper.java │ │ │ ├── ImageInstructionStore.java │ │ │ ├── ImageMeta.java │ │ │ └── instruction │ │ │ │ ├── GetImageFormatsInstruction.java │ │ │ │ ├── ReadImageInstruction.java │ │ │ │ └── WriteImageInstruction.java │ │ ├── json │ │ │ ├── JSONInstructionStore.java │ │ │ ├── JSONUtils.java │ │ │ ├── LoadJSONInstruction.java │ │ │ └── ToJSONInstruction.java │ │ ├── la │ │ │ ├── LinearAlgebraInstructionStore.java │ │ │ └── MatMulInstruction.java │ │ ├── library │ │ │ └── LibraryInstructionStore.java │ │ ├── plot │ │ │ ├── AxisConfig.java │ │ │ ├── ColorCycle.java │ │ │ ├── PlotInstructionStore.java │ │ │ ├── RenderConfig.java │ │ │ ├── SeriesConfig.java │ │ │ └── instruction │ │ │ │ ├── BoxPlotInstruction.java │ │ │ │ ├── MultiPlotInstruction.java │ │ │ │ ├── PieChartInstruction.java │ │ │ │ └── PlotInstruction.java │ │ ├── socket │ │ │ ├── AyaSocket.java │ │ │ ├── AyaSocketServer.java │ │ │ ├── SocketInstructionStore.java │ │ │ └── SocketManager.java │ │ ├── sys │ │ │ ├── FileExistsSystemInstruction.java │ │ │ ├── SysExecInstruction.java │ │ │ └── SystemInstructionStore.java │ │ ├── thread │ │ │ └── ThreadInstructionStore.java │ │ └── unicode │ │ │ ├── FromCodePointsInstruction.java │ │ │ ├── ToCodePointsInstruction.java │ │ │ ├── UTF16FromCodeUnitsInstruction.java │ │ │ ├── UTF16FromTuplesInstruction.java │ │ │ ├── UTF16ToCodeUnitsInstruction.java │ │ │ ├── UTF16ToTuplesInstruction.java │ │ │ └── UnicodeInstructionStore.java │ ├── instruction │ │ ├── BlockLiteralInstruction.java │ │ ├── DataInstruction.java │ │ ├── DictLiteralInstruction.java │ │ ├── EmptyDictLiteralInstruction.java │ │ ├── EmptyListLiteralInstruction.java │ │ ├── Instruction.java │ │ ├── InstructionStack.java │ │ ├── InterpolateStringInstruction.java │ │ ├── LambdaInstruction.java │ │ ├── ListBuilderInstruction.java │ │ ├── ListLiteralInstruction.java │ │ ├── StringLiteralInstruction.java │ │ ├── TupleInstruction.java │ │ ├── flag │ │ │ ├── FlagInstruction.java │ │ │ ├── PopCallstackInstruction.java │ │ │ └── PopVarFlagInstruction.java │ │ ├── index │ │ │ ├── AnonGetIndexInstruction.java │ │ │ ├── GetExprIndexInstruction.java │ │ │ ├── GetIndexInstruction.java │ │ │ ├── GetNumberIndexInstruction.java │ │ │ ├── GetObjIndexInstruction.java │ │ │ ├── GetVarIndexInstruction.java │ │ │ ├── SetExprIndexInstruction.java │ │ │ ├── SetIndexInstruction.java │ │ │ ├── SetNumberIndexInstruction.java │ │ │ ├── SetObjIndexInstruction.java │ │ │ └── SetVarIndexInstruction.java │ │ ├── named │ │ │ ├── NamedInstructionStore.java │ │ │ ├── NamedOperator.java │ │ │ └── NamedOperatorInstruction.java │ │ ├── op │ │ │ ├── ColonOps.java │ │ │ ├── DotOps.java │ │ │ ├── MiscOps.java │ │ │ ├── OpDoc.java │ │ │ ├── OpDocReader.java │ │ │ ├── OpInfo.java │ │ │ ├── Operator.java │ │ │ ├── OperatorInstruction.java │ │ │ ├── Ops.java │ │ │ └── overload │ │ │ │ ├── OpOverload.java │ │ │ │ ├── OpOverload1Arg.java │ │ │ │ ├── OpOverload2Arg.java │ │ │ │ └── OpOverloadNoOp.java │ │ └── variable │ │ │ ├── GetCDictInstruction.java │ │ │ ├── GetKeyVariableInstruction.java │ │ │ ├── GetVariableInstruction.java │ │ │ ├── QuoteGetKeyVariableInstruction.java │ │ │ ├── QuoteGetVariableInstruction.java │ │ │ ├── SetKeyVariableInstruction.java │ │ │ ├── SetVariableInstruction.java │ │ │ ├── VariableInstruction.java │ │ │ └── assignment │ │ │ ├── Assignment.java │ │ │ ├── CopyAssignment.java │ │ │ ├── SimpleAssignment.java │ │ │ ├── TypedAssignment.java │ │ │ └── UnpackAssignment.java │ ├── io │ │ ├── StringOut.java │ │ ├── fs │ │ │ ├── AbstractFilesystemIO.java │ │ │ ├── FilesystemIO.java │ │ │ └── UnimplementedFilesystemIO.java │ │ ├── http │ │ │ ├── AbstractHTTPDownloader.java │ │ │ ├── HTTPDownloader.java │ │ │ └── UnimplementedHTTPDownloader.java │ │ └── stdin │ │ │ ├── EmptyInputWrapper.java │ │ │ ├── InputWrapper.java │ │ │ └── ScannerInputWrapper.java │ ├── obj │ │ ├── Obj.java │ │ ├── block │ │ │ ├── BlockHeader.java │ │ │ ├── BlockUtils.java │ │ │ ├── CheckReturnTypeGenerator.java │ │ │ ├── CheckReturnTypeInstance.java │ │ │ ├── ConditionalUtils.java │ │ │ ├── NewLocalsInstruction.java │ │ │ └── StaticBlock.java │ │ ├── character │ │ │ └── Char.java │ │ ├── dict │ │ │ ├── Dict.java │ │ │ └── DictIndexing.java │ │ ├── list │ │ │ ├── GenericList.java │ │ │ ├── List.java │ │ │ ├── ListAlgorithms.java │ │ │ ├── ListCollector.java │ │ │ ├── ListImpl.java │ │ │ ├── ListIterationFunctions.java │ │ │ ├── ListRangeUtils.java │ │ │ ├── NDListIterator.java │ │ │ ├── Permutations.java │ │ │ ├── Str.java │ │ │ └── numberlist │ │ │ │ ├── DoubleList.java │ │ │ │ ├── NumberItemList.java │ │ │ │ ├── NumberList.java │ │ │ │ └── NumberListOp.java │ │ ├── number │ │ │ ├── BaseConversion.java │ │ │ ├── BigNum.java │ │ │ ├── ComplexNum.java │ │ │ ├── FractionNum.java │ │ │ ├── Num.java │ │ │ ├── Number.java │ │ │ └── NumberMath.java │ │ └── symbol │ │ │ ├── Symbol.java │ │ │ ├── SymbolConstants.java │ │ │ └── SymbolTable.java │ ├── parser │ │ ├── CharacterParser.java │ │ ├── HeaderUtils.java │ │ ├── Parser.java │ │ ├── ParserString.java │ │ ├── SourceString.java │ │ ├── SourceStringRef.java │ │ ├── SpecialNumberParser.java │ │ ├── StringParseUtils.java │ │ ├── token │ │ │ ├── TokenContainer.java │ │ │ ├── TokenQueue.java │ │ │ └── TokenStack.java │ │ └── tokens │ │ │ ├── BlockToken.java │ │ │ ├── CDictToken.java │ │ │ ├── CharToken.java │ │ │ ├── CollectionToken.java │ │ │ ├── CurrentFileToken.java │ │ │ ├── DictToken.java │ │ │ ├── EscapedToken.java │ │ │ ├── KeyVarToken.java │ │ │ ├── LambdaToken.java │ │ │ ├── ListToken.java │ │ │ ├── NamedOpToken.java │ │ │ ├── NumberToken.java │ │ │ ├── OperatorToken.java │ │ │ ├── SpecialToken.java │ │ │ ├── StdToken.java │ │ │ ├── StringToken.java │ │ │ ├── SymbolToken.java │ │ │ ├── Token.java │ │ │ └── VarToken.java │ ├── util │ │ ├── AWTKeyDecoder.java │ │ ├── BlockReader.java │ │ ├── Casting.java │ │ ├── CharUtils.java │ │ ├── CircleIterator.java │ │ ├── ColorFactory.java │ │ ├── DictReader.java │ │ ├── FileUtils.java │ │ ├── LRUCache.java │ │ ├── MathUtils.java │ │ ├── NamedCharacters.java │ │ ├── ObjToColor.java │ │ ├── Pair.java │ │ ├── SizeBoundedQueue.java │ │ ├── StaticDictReader.java │ │ ├── StringSearch.java │ │ ├── StringUtils.java │ │ ├── Sym.java │ │ ├── Triple.java │ │ ├── TypeUtils.java │ │ ├── UTF16.java │ │ ├── VectorizedFunctions.java │ │ └── stringsearch │ │ │ ├── ExactMatcher.java │ │ │ ├── FuzzyMatcher.java │ │ │ ├── MatchInfo.java │ │ │ ├── MatchPosition.java │ │ │ ├── RegexMatcher.java │ │ │ ├── SearchMode.java │ │ │ ├── StringMatcher.java │ │ │ └── StringMatcherFactory.java │ └── variable │ │ └── VariableData.java ├── test │ ├── AyaTestCases.java │ ├── Stopwatch.java │ ├── Test.java │ ├── TestCase.java │ └── obj │ │ ├── list │ │ ├── StrTest.java │ │ └── numberlist │ │ │ └── NumberItemListTest.java │ │ └── number │ │ ├── FractionNumTest.java │ │ ├── NumberBinaryOpsTest.java │ │ └── NumberTest.java ├── ui │ ├── AyaIDE.java │ ├── CodeTextPane.java │ ├── ConsoleWindow.java │ ├── EditorWindow.java │ ├── InputLine.java │ ├── MyConsole.java │ ├── QuickSearch.java │ ├── StyleTheme.java │ ├── TextPaneInputStream.java │ ├── TextPanePrintStream.java │ ├── components │ │ └── FixedTextPane.java │ └── settings │ │ ├── ISettings.java │ │ ├── QuickSearchSettings.java │ │ ├── SettingsManager.java │ │ └── UiSettings.java └── web │ ├── AyaWeb.java │ ├── StringPath.java │ ├── WebAvailableNamedInstructionStore.java │ └── WebFilesystemIO.java ├── std ├── asciiart.aya ├── asciitable.aya ├── bitset.aya ├── canvas.aya ├── color.aya ├── csv.aya ├── dataframe.aya ├── date.aya ├── dialog.aya ├── docs.aya ├── enum.aya ├── golf.aya ├── image.aya ├── io.aya ├── json.aya ├── la.aya ├── map.aya ├── math.aya ├── missing.aya ├── mp.aya ├── pkg.aya ├── plot.aya ├── queue.aya ├── random.aya ├── rdatasets.aya ├── set.aya ├── shell.aya ├── socket.aya ├── stack.aya ├── stats.aya ├── sys.aya ├── terminal.aya ├── threading.aya ├── time.aya ├── turtle.aya ├── unit.aya ├── versionstr.aya └── viewmat.aya └── test ├── base ├── test_block.aya ├── test_char.aya ├── test_list.aya ├── test_num.aya ├── test_str.aya └── test_sym.aya ├── broadcast.aya ├── colon_ops.aya ├── core.aya ├── dot_ops.aya ├── examples.aya ├── filesystem.aya ├── golf └── golf_examples.aya ├── lib ├── example │ ├── ExampleStore.java │ ├── aya.instruction.named.NamedInstructionStore │ └── build.xml └── lib.aya ├── list.aya ├── misc.aya ├── ops.aya ├── range.aya ├── repr.aya ├── return_types.aya ├── std ├── test_color.aya ├── test_csv.aya ├── test_date.aya ├── test_enum.aya ├── test_io.aya ├── test_json.aya ├── test_la.aya ├── test_map.aya ├── test_math.aya ├── test_queue.aya ├── test_set.aya ├── test_stack.aya └── test_stats.aya ├── test.aya ├── test_op_overload.aya ├── types.aya └── unicode.aya /.github/workflows/maven-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/.github/workflows/maven-publish.yml -------------------------------------------------------------------------------- /.github/workflows/maven-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/.github/workflows/maven-test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/README.md -------------------------------------------------------------------------------- /ayarc.aya: -------------------------------------------------------------------------------- 1 | :(sys.ad) "base/__aya__.aya" + :F 2 | -------------------------------------------------------------------------------- /base/__aya__.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/base/__aya__.aya -------------------------------------------------------------------------------- /base/block.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/base/block.aya -------------------------------------------------------------------------------- /base/char.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/base/char.aya -------------------------------------------------------------------------------- /base/importlib.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/base/importlib.aya -------------------------------------------------------------------------------- /base/interpreter.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/base/interpreter.aya -------------------------------------------------------------------------------- /base/list.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/base/list.aya -------------------------------------------------------------------------------- /base/num.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/base/num.aya -------------------------------------------------------------------------------- /base/str.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/base/str.aya -------------------------------------------------------------------------------- /base/sym.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/base/sym.aya -------------------------------------------------------------------------------- /base/test.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/base/test.aya -------------------------------------------------------------------------------- /examples/100doors.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/examples/100doors.aya -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/account.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/examples/account.aya -------------------------------------------------------------------------------- /examples/arg_unpacking.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/examples/arg_unpacking.aya -------------------------------------------------------------------------------- /examples/asciitable.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/examples/asciitable.aya -------------------------------------------------------------------------------- /examples/asciitrain.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/examples/asciitrain.aya -------------------------------------------------------------------------------- /examples/ayarc_eclipse.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/examples/ayarc_eclipse.aya -------------------------------------------------------------------------------- /examples/bst.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/examples/bst.aya -------------------------------------------------------------------------------- /examples/canvas/attractor.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/examples/canvas/attractor.aya -------------------------------------------------------------------------------- /examples/canvas/boids.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/examples/canvas/boids.aya -------------------------------------------------------------------------------- /examples/canvas/bouncing.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/examples/canvas/bouncing.aya -------------------------------------------------------------------------------- /examples/canvas/circles.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/examples/canvas/circles.aya -------------------------------------------------------------------------------- /examples/canvas/color_table.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/examples/canvas/color_table.aya -------------------------------------------------------------------------------- /examples/canvas/color_typewriter.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/examples/canvas/color_typewriter.aya -------------------------------------------------------------------------------- /examples/canvas/cube.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/examples/canvas/cube.aya -------------------------------------------------------------------------------- /examples/canvas/elementary_ca.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/examples/canvas/elementary_ca.aya -------------------------------------------------------------------------------- /examples/canvas/graphics.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/examples/canvas/graphics.aya -------------------------------------------------------------------------------- /examples/canvas/julia.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/examples/canvas/julia.aya -------------------------------------------------------------------------------- /examples/canvas/life.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/examples/canvas/life.aya -------------------------------------------------------------------------------- /examples/canvas/logo.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/examples/canvas/logo.aya -------------------------------------------------------------------------------- /examples/canvas/mandelbrot.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/examples/canvas/mandelbrot.aya -------------------------------------------------------------------------------- /examples/canvas/mouse.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/examples/canvas/mouse.aya -------------------------------------------------------------------------------- /examples/canvas/particles.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/examples/canvas/particles.aya -------------------------------------------------------------------------------- /examples/canvas/vaporwave_city.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/examples/canvas/vaporwave_city.aya -------------------------------------------------------------------------------- /examples/checked.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/examples/checked.aya -------------------------------------------------------------------------------- /examples/class.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/examples/class.aya -------------------------------------------------------------------------------- /examples/collatz.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/examples/collatz.aya -------------------------------------------------------------------------------- /examples/data/LakeHuron.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/examples/data/LakeHuron.csv -------------------------------------------------------------------------------- /examples/data/catalog.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/examples/data/catalog.csv -------------------------------------------------------------------------------- /examples/data/iris.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/examples/data/iris.csv -------------------------------------------------------------------------------- /examples/data/simple.csv: -------------------------------------------------------------------------------- 1 | A, B, C 2 | 1, 2, 3 3 | 4, 5, 6 4 | 7, 8, 9 5 | -------------------------------------------------------------------------------- /examples/data/words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/examples/data/words.txt -------------------------------------------------------------------------------- /examples/defaultdict.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/examples/defaultdict.aya -------------------------------------------------------------------------------- /examples/echo_client.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/examples/echo_client.aya -------------------------------------------------------------------------------- /examples/echo_server.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/examples/echo_server.aya -------------------------------------------------------------------------------- /examples/fibonacci.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/examples/fibonacci.aya -------------------------------------------------------------------------------- /examples/fibs_below.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/examples/fibs_below.aya -------------------------------------------------------------------------------- /examples/for_loop_list.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/examples/for_loop_list.aya -------------------------------------------------------------------------------- /examples/genetic.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/examples/genetic.aya -------------------------------------------------------------------------------- /examples/greeter.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/examples/greeter.aya -------------------------------------------------------------------------------- /examples/guessing_game.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/examples/guessing_game.aya -------------------------------------------------------------------------------- /examples/hello_world.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/examples/hello_world.aya -------------------------------------------------------------------------------- /examples/inheritance.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/examples/inheritance.aya -------------------------------------------------------------------------------- /examples/isprime.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/examples/isprime.aya -------------------------------------------------------------------------------- /examples/list_iterator.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/examples/list_iterator.aya -------------------------------------------------------------------------------- /examples/loading.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/examples/loading.aya -------------------------------------------------------------------------------- /examples/mandelbrot.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/examples/mandelbrot.aya -------------------------------------------------------------------------------- /examples/misc.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/examples/misc.aya -------------------------------------------------------------------------------- /examples/monte_carlo.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/examples/monte_carlo.aya -------------------------------------------------------------------------------- /examples/nn.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/examples/nn.aya -------------------------------------------------------------------------------- /examples/nth_fib.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/examples/nth_fib.aya -------------------------------------------------------------------------------- /examples/package_aya_libs.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/examples/package_aya_libs.aya -------------------------------------------------------------------------------- /examples/plot/bernstein.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/examples/plot/bernstein.aya -------------------------------------------------------------------------------- /examples/plot/betting.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/examples/plot/betting.aya -------------------------------------------------------------------------------- /examples/plot/box_plot.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/examples/plot/box_plot.aya -------------------------------------------------------------------------------- /examples/plot/canvas_multiplot.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/examples/plot/canvas_multiplot.aya -------------------------------------------------------------------------------- /examples/plot/iris.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/examples/plot/iris.aya -------------------------------------------------------------------------------- /examples/plot/lakehuron.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/examples/plot/lakehuron.aya -------------------------------------------------------------------------------- /examples/plot/lorenz.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/examples/plot/lorenz.aya -------------------------------------------------------------------------------- /examples/plot/multi.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/examples/plot/multi.aya -------------------------------------------------------------------------------- /examples/plot/normal.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/examples/plot/normal.aya -------------------------------------------------------------------------------- /examples/plot/numdx.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/examples/plot/numdx.aya -------------------------------------------------------------------------------- /examples/plot/parametric.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/examples/plot/parametric.aya -------------------------------------------------------------------------------- /examples/plot/pie_chart.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/examples/plot/pie_chart.aya -------------------------------------------------------------------------------- /examples/plot/rainbow.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/examples/plot/rainbow.aya -------------------------------------------------------------------------------- /examples/plot/random_wave.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/examples/plot/random_wave.aya -------------------------------------------------------------------------------- /examples/plot/randomwalk.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/examples/plot/randomwalk.aya -------------------------------------------------------------------------------- /examples/plot/scatter.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/examples/plot/scatter.aya -------------------------------------------------------------------------------- /examples/plot/simple_functions.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/examples/plot/simple_functions.aya -------------------------------------------------------------------------------- /examples/plot/sinsrs.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/examples/plot/sinsrs.aya -------------------------------------------------------------------------------- /examples/plot/weierstrass.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/examples/plot/weierstrass.aya -------------------------------------------------------------------------------- /examples/product.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/examples/product.aya -------------------------------------------------------------------------------- /examples/quicksort.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/examples/quicksort.aya -------------------------------------------------------------------------------- /examples/quine.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/examples/quine.aya -------------------------------------------------------------------------------- /examples/rdatasets.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/examples/rdatasets.aya -------------------------------------------------------------------------------- /examples/setindex.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/examples/setindex.aya -------------------------------------------------------------------------------- /examples/singleton.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/examples/singleton.aya -------------------------------------------------------------------------------- /examples/spell_check.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/examples/spell_check.aya -------------------------------------------------------------------------------- /examples/syntax.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/examples/syntax.aya -------------------------------------------------------------------------------- /examples/thread.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/examples/thread.aya -------------------------------------------------------------------------------- /examples/tocamel.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/examples/tocamel.aya -------------------------------------------------------------------------------- /examples/traceback.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/examples/traceback.aya -------------------------------------------------------------------------------- /examples/turtle/flower.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/examples/turtle/flower.aya -------------------------------------------------------------------------------- /examples/turtle/random.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/examples/turtle/random.aya -------------------------------------------------------------------------------- /examples/turtle/snowflake.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/examples/turtle/snowflake.aya -------------------------------------------------------------------------------- /examples/turtle/square.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/examples/turtle/square.aya -------------------------------------------------------------------------------- /examples/vectorize.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/examples/vectorize.aya -------------------------------------------------------------------------------- /examples/visited_cities.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/examples/visited_cities.aya -------------------------------------------------------------------------------- /examples/xkcd_colors.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/examples/xkcd_colors.aya -------------------------------------------------------------------------------- /images/aya-demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/images/aya-demo.png -------------------------------------------------------------------------------- /images/bernstein.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/images/bernstein.png -------------------------------------------------------------------------------- /images/discord.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/images/discord.png -------------------------------------------------------------------------------- /images/example-mosaic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/images/example-mosaic.png -------------------------------------------------------------------------------- /images/lakehuron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/images/lakehuron.png -------------------------------------------------------------------------------- /images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/images/logo.png -------------------------------------------------------------------------------- /images/lorenz_attractor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/images/lorenz_attractor.png -------------------------------------------------------------------------------- /images/mandel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/images/mandel.png -------------------------------------------------------------------------------- /images/quicksearch_window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/images/quicksearch_window.png -------------------------------------------------------------------------------- /images/sample_plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/images/sample_plot.png -------------------------------------------------------------------------------- /images/turtle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/images/turtle.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/index.html -------------------------------------------------------------------------------- /lib/com/mathlibrary/com.mathlibrary.core/1.0.0/com.mathlibrary.core-1.0.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/lib/com/mathlibrary/com.mathlibrary.core/1.0.0/com.mathlibrary.core-1.0.0.jar -------------------------------------------------------------------------------- /lib/com/mathlibrary/com.mathlibrary.core/1.0.0/com.mathlibrary.core-1.0.0.pom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/lib/com/mathlibrary/com.mathlibrary.core/1.0.0/com.mathlibrary.core-1.0.0.pom -------------------------------------------------------------------------------- /lib/com/mathlibrary/com.mathlibrary.core/maven-metadata-local.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/lib/com/mathlibrary/com.mathlibrary.core/maven-metadata-local.xml -------------------------------------------------------------------------------- /manual/blocks_and_functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/manual/blocks_and_functions.md -------------------------------------------------------------------------------- /manual/canvas_input.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/manual/canvas_input.md -------------------------------------------------------------------------------- /manual/characters_and_strings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/manual/characters_and_strings.md -------------------------------------------------------------------------------- /manual/debugging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/manual/debugging.md -------------------------------------------------------------------------------- /manual/dictionaries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/manual/dictionaries.md -------------------------------------------------------------------------------- /manual/img/cube.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/manual/img/cube.gif -------------------------------------------------------------------------------- /manual/img/mandelbrot_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/manual/img/mandelbrot_example.png -------------------------------------------------------------------------------- /manual/img/vaporwave_city.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/manual/img/vaporwave_city.png -------------------------------------------------------------------------------- /manual/libraries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/manual/libraries.md -------------------------------------------------------------------------------- /manual/lists.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/manual/lists.md -------------------------------------------------------------------------------- /manual/metaprogramming.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/manual/metaprogramming.md -------------------------------------------------------------------------------- /manual/multithreading.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/manual/multithreading.md -------------------------------------------------------------------------------- /manual/number.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/manual/number.md -------------------------------------------------------------------------------- /manual/running_and_installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/manual/running_and_installation.md -------------------------------------------------------------------------------- /manual/standard_library.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/manual/standard_library.md -------------------------------------------------------------------------------- /manual/syntax_overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/manual/syntax_overview.md -------------------------------------------------------------------------------- /manual/tour.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/manual/tour.md -------------------------------------------------------------------------------- /manual/type_annotations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/manual/type_annotations.md -------------------------------------------------------------------------------- /manual/user_types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/manual/user_types.md -------------------------------------------------------------------------------- /manual/variables_and_scope.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/manual/variables_and_scope.md -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/pom.xml -------------------------------------------------------------------------------- /runnable/linux/aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/runnable/linux/aya -------------------------------------------------------------------------------- /src/aya/AyaPrefs.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/AyaPrefs.java -------------------------------------------------------------------------------- /src/aya/AyaStdIO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/AyaStdIO.java -------------------------------------------------------------------------------- /src/aya/AyaThread.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/AyaThread.java -------------------------------------------------------------------------------- /src/aya/CLIOptions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/CLIOptions.java -------------------------------------------------------------------------------- /src/aya/CallStack.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/CallStack.java -------------------------------------------------------------------------------- /src/aya/DebugUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/DebugUtils.java -------------------------------------------------------------------------------- /src/aya/ExecutionRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/ExecutionRequest.java -------------------------------------------------------------------------------- /src/aya/ExecutionResult.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/ExecutionResult.java -------------------------------------------------------------------------------- /src/aya/ExecutionResultException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/ExecutionResultException.java -------------------------------------------------------------------------------- /src/aya/ExecutionResultSuccess.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/ExecutionResultSuccess.java -------------------------------------------------------------------------------- /src/aya/ExecutionResultUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/ExecutionResultUtils.java -------------------------------------------------------------------------------- /src/aya/InteractiveAya.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/InteractiveAya.java -------------------------------------------------------------------------------- /src/aya/ReprStream.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/ReprStream.java -------------------------------------------------------------------------------- /src/aya/StandaloneAya.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/StandaloneAya.java -------------------------------------------------------------------------------- /src/aya/StaticData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/StaticData.java -------------------------------------------------------------------------------- /src/aya/TypeIDs.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/TypeIDs.java -------------------------------------------------------------------------------- /src/aya/eval/BlockEvaluator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/eval/BlockEvaluator.java -------------------------------------------------------------------------------- /src/aya/eval/ExecutionContext.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/eval/ExecutionContext.java -------------------------------------------------------------------------------- /src/aya/exceptions/ex/AyaException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/exceptions/ex/AyaException.java -------------------------------------------------------------------------------- /src/aya/exceptions/ex/AyaExceptionInterface.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/exceptions/ex/AyaExceptionInterface.java -------------------------------------------------------------------------------- /src/aya/exceptions/parser/EndOfInputError.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/exceptions/parser/EndOfInputError.java -------------------------------------------------------------------------------- /src/aya/exceptions/parser/NotAnOperatorError.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/exceptions/parser/NotAnOperatorError.java -------------------------------------------------------------------------------- /src/aya/exceptions/parser/ParserException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/exceptions/parser/ParserException.java -------------------------------------------------------------------------------- /src/aya/exceptions/parser/SyntaxError.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/exceptions/parser/SyntaxError.java -------------------------------------------------------------------------------- /src/aya/exceptions/runtime/AssertError.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/exceptions/runtime/AssertError.java -------------------------------------------------------------------------------- /src/aya/exceptions/runtime/AyaRuntimeException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/exceptions/runtime/AyaRuntimeException.java -------------------------------------------------------------------------------- /src/aya/exceptions/runtime/AyaStackOverflowError.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/exceptions/runtime/AyaStackOverflowError.java -------------------------------------------------------------------------------- /src/aya/exceptions/runtime/EmptyStackError.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/exceptions/runtime/EmptyStackError.java -------------------------------------------------------------------------------- /src/aya/exceptions/runtime/IOError.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/exceptions/runtime/IOError.java -------------------------------------------------------------------------------- /src/aya/exceptions/runtime/IndexError.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/exceptions/runtime/IndexError.java -------------------------------------------------------------------------------- /src/aya/exceptions/runtime/InternalAyaRuntimeException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/exceptions/runtime/InternalAyaRuntimeException.java -------------------------------------------------------------------------------- /src/aya/exceptions/runtime/InvalidReferenceError.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/exceptions/runtime/InvalidReferenceError.java -------------------------------------------------------------------------------- /src/aya/exceptions/runtime/MathError.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/exceptions/runtime/MathError.java -------------------------------------------------------------------------------- /src/aya/exceptions/runtime/ThreadError.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/exceptions/runtime/ThreadError.java -------------------------------------------------------------------------------- /src/aya/exceptions/runtime/TypeError.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/exceptions/runtime/TypeError.java -------------------------------------------------------------------------------- /src/aya/exceptions/runtime/UndefVarException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/exceptions/runtime/UndefVarException.java -------------------------------------------------------------------------------- /src/aya/exceptions/runtime/UnimplementedError.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/exceptions/runtime/UnimplementedError.java -------------------------------------------------------------------------------- /src/aya/exceptions/runtime/UserObjRuntimeException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/exceptions/runtime/UserObjRuntimeException.java -------------------------------------------------------------------------------- /src/aya/exceptions/runtime/ValueError.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/exceptions/runtime/ValueError.java -------------------------------------------------------------------------------- /src/aya/ext/color/ColorInstructionStore.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/ext/color/ColorInstructionStore.java -------------------------------------------------------------------------------- /src/aya/ext/date/DateInstructionStore.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/ext/date/DateInstructionStore.java -------------------------------------------------------------------------------- /src/aya/ext/date/DescribeDateInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/ext/date/DescribeDateInstruction.java -------------------------------------------------------------------------------- /src/aya/ext/date/FormatDateInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/ext/date/FormatDateInstruction.java -------------------------------------------------------------------------------- /src/aya/ext/date/ParseDateInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/ext/date/ParseDateInstruction.java -------------------------------------------------------------------------------- /src/aya/ext/debug/DebugInstructionStore.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/ext/debug/DebugInstructionStore.java -------------------------------------------------------------------------------- /src/aya/ext/debug/PauseDebugInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/ext/debug/PauseDebugInstruction.java -------------------------------------------------------------------------------- /src/aya/ext/dialog/DialogInstructionStore.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/ext/dialog/DialogInstructionStore.java -------------------------------------------------------------------------------- /src/aya/ext/dialog/QuickDialog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/ext/dialog/QuickDialog.java -------------------------------------------------------------------------------- /src/aya/ext/download/DownloadInstructionStore.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/ext/download/DownloadInstructionStore.java -------------------------------------------------------------------------------- /src/aya/ext/fstream/FStreamInstructionStore.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/ext/fstream/FStreamInstructionStore.java -------------------------------------------------------------------------------- /src/aya/ext/fstream/FStreamManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/ext/fstream/FStreamManager.java -------------------------------------------------------------------------------- /src/aya/ext/fstream/LegacyFStreamInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/ext/fstream/LegacyFStreamInstruction.java -------------------------------------------------------------------------------- /src/aya/ext/graphics/Canvas.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/ext/graphics/Canvas.java -------------------------------------------------------------------------------- /src/aya/ext/graphics/CanvasCursorListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/ext/graphics/CanvasCursorListener.java -------------------------------------------------------------------------------- /src/aya/ext/graphics/CanvasKeyListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/ext/graphics/CanvasKeyListener.java -------------------------------------------------------------------------------- /src/aya/ext/graphics/CanvasTable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/ext/graphics/CanvasTable.java -------------------------------------------------------------------------------- /src/aya/ext/graphics/GraphicsInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/ext/graphics/GraphicsInstruction.java -------------------------------------------------------------------------------- /src/aya/ext/graphics/GraphicsInstructionStore.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/ext/graphics/GraphicsInstructionStore.java -------------------------------------------------------------------------------- /src/aya/ext/graphics/instruction/ArcGraphicsInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/ext/graphics/instruction/ArcGraphicsInstruction.java -------------------------------------------------------------------------------- /src/aya/ext/graphics/instruction/ClearGraphicsInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/ext/graphics/instruction/ClearGraphicsInstruction.java -------------------------------------------------------------------------------- /src/aya/ext/graphics/instruction/ClearRectGraphicsInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/ext/graphics/instruction/ClearRectGraphicsInstruction.java -------------------------------------------------------------------------------- /src/aya/ext/graphics/instruction/CloseGraphicsInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/ext/graphics/instruction/CloseGraphicsInstruction.java -------------------------------------------------------------------------------- /src/aya/ext/graphics/instruction/CopyRectGraphicsInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/ext/graphics/instruction/CopyRectGraphicsInstruction.java -------------------------------------------------------------------------------- /src/aya/ext/graphics/instruction/DrawImageGraphicsInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/ext/graphics/instruction/DrawImageGraphicsInstruction.java -------------------------------------------------------------------------------- /src/aya/ext/graphics/instruction/EllipseGraphicsInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/ext/graphics/instruction/EllipseGraphicsInstruction.java -------------------------------------------------------------------------------- /src/aya/ext/graphics/instruction/GetPixelsGraphicsInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/ext/graphics/instruction/GetPixelsGraphicsInstruction.java -------------------------------------------------------------------------------- /src/aya/ext/graphics/instruction/IsOpenGraphicsInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/ext/graphics/instruction/IsOpenGraphicsInstruction.java -------------------------------------------------------------------------------- /src/aya/ext/graphics/instruction/LineGraphicsInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/ext/graphics/instruction/LineGraphicsInstruction.java -------------------------------------------------------------------------------- /src/aya/ext/graphics/instruction/ListFontsGraphicsInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/ext/graphics/instruction/ListFontsGraphicsInstruction.java -------------------------------------------------------------------------------- /src/aya/ext/graphics/instruction/NewGraphicsInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/ext/graphics/instruction/NewGraphicsInstruction.java -------------------------------------------------------------------------------- /src/aya/ext/graphics/instruction/OvalGraphicsInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/ext/graphics/instruction/OvalGraphicsInstruction.java -------------------------------------------------------------------------------- /src/aya/ext/graphics/instruction/PathGraphicsInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/ext/graphics/instruction/PathGraphicsInstruction.java -------------------------------------------------------------------------------- /src/aya/ext/graphics/instruction/PointsGraphicsInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/ext/graphics/instruction/PointsGraphicsInstruction.java -------------------------------------------------------------------------------- /src/aya/ext/graphics/instruction/RectGraphicsInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/ext/graphics/instruction/RectGraphicsInstruction.java -------------------------------------------------------------------------------- /src/aya/ext/graphics/instruction/RotateGraphicsInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/ext/graphics/instruction/RotateGraphicsInstruction.java -------------------------------------------------------------------------------- /src/aya/ext/graphics/instruction/RoundRectGraphicsInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/ext/graphics/instruction/RoundRectGraphicsInstruction.java -------------------------------------------------------------------------------- /src/aya/ext/graphics/instruction/SaveGraphicsInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/ext/graphics/instruction/SaveGraphicsInstruction.java -------------------------------------------------------------------------------- /src/aya/ext/graphics/instruction/ScaleGraphicsInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/ext/graphics/instruction/ScaleGraphicsInstruction.java -------------------------------------------------------------------------------- /src/aya/ext/graphics/instruction/SetAlphaGraphicsInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/ext/graphics/instruction/SetAlphaGraphicsInstruction.java -------------------------------------------------------------------------------- /src/aya/ext/graphics/instruction/SetBGColorGraphicsInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/ext/graphics/instruction/SetBGColorGraphicsInstruction.java -------------------------------------------------------------------------------- /src/aya/ext/graphics/instruction/SetColorAlphaGraphicsInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/ext/graphics/instruction/SetColorAlphaGraphicsInstruction.java -------------------------------------------------------------------------------- /src/aya/ext/graphics/instruction/SetColorGraphicsInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/ext/graphics/instruction/SetColorGraphicsInstruction.java -------------------------------------------------------------------------------- /src/aya/ext/graphics/instruction/SetFontGraphicsInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/ext/graphics/instruction/SetFontGraphicsInstruction.java -------------------------------------------------------------------------------- /src/aya/ext/graphics/instruction/SetPaintGradGraphicsInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/ext/graphics/instruction/SetPaintGradGraphicsInstruction.java -------------------------------------------------------------------------------- /src/aya/ext/graphics/instruction/SetStrokeGraphicsInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/ext/graphics/instruction/SetStrokeGraphicsInstruction.java -------------------------------------------------------------------------------- /src/aya/ext/graphics/instruction/SetStrokeWidthGraphicsInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/ext/graphics/instruction/SetStrokeWidthGraphicsInstruction.java -------------------------------------------------------------------------------- /src/aya/ext/graphics/instruction/ShearGraphicsInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/ext/graphics/instruction/ShearGraphicsInstruction.java -------------------------------------------------------------------------------- /src/aya/ext/graphics/instruction/ShowGraphicsInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/ext/graphics/instruction/ShowGraphicsInstruction.java -------------------------------------------------------------------------------- /src/aya/ext/graphics/instruction/TextGraphicsInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/ext/graphics/instruction/TextGraphicsInstruction.java -------------------------------------------------------------------------------- /src/aya/ext/graphics/instruction/TranslateGraphicsInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/ext/graphics/instruction/TranslateGraphicsInstruction.java -------------------------------------------------------------------------------- /src/aya/ext/graphics/instruction/ViewmatGraphicsInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/ext/graphics/instruction/ViewmatGraphicsInstruction.java -------------------------------------------------------------------------------- /src/aya/ext/graphics/instruction/cursor/ClickEventsInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/ext/graphics/instruction/cursor/ClickEventsInstruction.java -------------------------------------------------------------------------------- /src/aya/ext/graphics/instruction/cursor/MoveEventsInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/ext/graphics/instruction/cursor/MoveEventsInstruction.java -------------------------------------------------------------------------------- /src/aya/ext/graphics/instruction/cursor/PressedButtonsInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/ext/graphics/instruction/cursor/PressedButtonsInstruction.java -------------------------------------------------------------------------------- /src/aya/ext/graphics/instruction/keyboard/PressedKeysInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/ext/graphics/instruction/keyboard/PressedKeysInstruction.java -------------------------------------------------------------------------------- /src/aya/ext/graphics/instruction/keyboard/TypedCharsInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/ext/graphics/instruction/keyboard/TypedCharsInstruction.java -------------------------------------------------------------------------------- /src/aya/ext/image/AyaImage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/ext/image/AyaImage.java -------------------------------------------------------------------------------- /src/aya/ext/image/Channel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/ext/image/Channel.java -------------------------------------------------------------------------------- /src/aya/ext/image/ImageHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/ext/image/ImageHelper.java -------------------------------------------------------------------------------- /src/aya/ext/image/ImageInstructionStore.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/ext/image/ImageInstructionStore.java -------------------------------------------------------------------------------- /src/aya/ext/image/ImageMeta.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/ext/image/ImageMeta.java -------------------------------------------------------------------------------- /src/aya/ext/image/instruction/GetImageFormatsInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/ext/image/instruction/GetImageFormatsInstruction.java -------------------------------------------------------------------------------- /src/aya/ext/image/instruction/ReadImageInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/ext/image/instruction/ReadImageInstruction.java -------------------------------------------------------------------------------- /src/aya/ext/image/instruction/WriteImageInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/ext/image/instruction/WriteImageInstruction.java -------------------------------------------------------------------------------- /src/aya/ext/json/JSONInstructionStore.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/ext/json/JSONInstructionStore.java -------------------------------------------------------------------------------- /src/aya/ext/json/JSONUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/ext/json/JSONUtils.java -------------------------------------------------------------------------------- /src/aya/ext/json/LoadJSONInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/ext/json/LoadJSONInstruction.java -------------------------------------------------------------------------------- /src/aya/ext/json/ToJSONInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/ext/json/ToJSONInstruction.java -------------------------------------------------------------------------------- /src/aya/ext/la/LinearAlgebraInstructionStore.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/ext/la/LinearAlgebraInstructionStore.java -------------------------------------------------------------------------------- /src/aya/ext/la/MatMulInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/ext/la/MatMulInstruction.java -------------------------------------------------------------------------------- /src/aya/ext/library/LibraryInstructionStore.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/ext/library/LibraryInstructionStore.java -------------------------------------------------------------------------------- /src/aya/ext/plot/AxisConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/ext/plot/AxisConfig.java -------------------------------------------------------------------------------- /src/aya/ext/plot/ColorCycle.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/ext/plot/ColorCycle.java -------------------------------------------------------------------------------- /src/aya/ext/plot/PlotInstructionStore.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/ext/plot/PlotInstructionStore.java -------------------------------------------------------------------------------- /src/aya/ext/plot/RenderConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/ext/plot/RenderConfig.java -------------------------------------------------------------------------------- /src/aya/ext/plot/SeriesConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/ext/plot/SeriesConfig.java -------------------------------------------------------------------------------- /src/aya/ext/plot/instruction/BoxPlotInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/ext/plot/instruction/BoxPlotInstruction.java -------------------------------------------------------------------------------- /src/aya/ext/plot/instruction/MultiPlotInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/ext/plot/instruction/MultiPlotInstruction.java -------------------------------------------------------------------------------- /src/aya/ext/plot/instruction/PieChartInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/ext/plot/instruction/PieChartInstruction.java -------------------------------------------------------------------------------- /src/aya/ext/plot/instruction/PlotInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/ext/plot/instruction/PlotInstruction.java -------------------------------------------------------------------------------- /src/aya/ext/socket/AyaSocket.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/ext/socket/AyaSocket.java -------------------------------------------------------------------------------- /src/aya/ext/socket/AyaSocketServer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/ext/socket/AyaSocketServer.java -------------------------------------------------------------------------------- /src/aya/ext/socket/SocketInstructionStore.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/ext/socket/SocketInstructionStore.java -------------------------------------------------------------------------------- /src/aya/ext/socket/SocketManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/ext/socket/SocketManager.java -------------------------------------------------------------------------------- /src/aya/ext/sys/FileExistsSystemInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/ext/sys/FileExistsSystemInstruction.java -------------------------------------------------------------------------------- /src/aya/ext/sys/SysExecInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/ext/sys/SysExecInstruction.java -------------------------------------------------------------------------------- /src/aya/ext/sys/SystemInstructionStore.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/ext/sys/SystemInstructionStore.java -------------------------------------------------------------------------------- /src/aya/ext/thread/ThreadInstructionStore.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/ext/thread/ThreadInstructionStore.java -------------------------------------------------------------------------------- /src/aya/ext/unicode/FromCodePointsInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/ext/unicode/FromCodePointsInstruction.java -------------------------------------------------------------------------------- /src/aya/ext/unicode/ToCodePointsInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/ext/unicode/ToCodePointsInstruction.java -------------------------------------------------------------------------------- /src/aya/ext/unicode/UTF16FromCodeUnitsInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/ext/unicode/UTF16FromCodeUnitsInstruction.java -------------------------------------------------------------------------------- /src/aya/ext/unicode/UTF16FromTuplesInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/ext/unicode/UTF16FromTuplesInstruction.java -------------------------------------------------------------------------------- /src/aya/ext/unicode/UTF16ToCodeUnitsInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/ext/unicode/UTF16ToCodeUnitsInstruction.java -------------------------------------------------------------------------------- /src/aya/ext/unicode/UTF16ToTuplesInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/ext/unicode/UTF16ToTuplesInstruction.java -------------------------------------------------------------------------------- /src/aya/ext/unicode/UnicodeInstructionStore.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/ext/unicode/UnicodeInstructionStore.java -------------------------------------------------------------------------------- /src/aya/instruction/BlockLiteralInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/instruction/BlockLiteralInstruction.java -------------------------------------------------------------------------------- /src/aya/instruction/DataInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/instruction/DataInstruction.java -------------------------------------------------------------------------------- /src/aya/instruction/DictLiteralInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/instruction/DictLiteralInstruction.java -------------------------------------------------------------------------------- /src/aya/instruction/EmptyDictLiteralInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/instruction/EmptyDictLiteralInstruction.java -------------------------------------------------------------------------------- /src/aya/instruction/EmptyListLiteralInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/instruction/EmptyListLiteralInstruction.java -------------------------------------------------------------------------------- /src/aya/instruction/Instruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/instruction/Instruction.java -------------------------------------------------------------------------------- /src/aya/instruction/InstructionStack.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/instruction/InstructionStack.java -------------------------------------------------------------------------------- /src/aya/instruction/InterpolateStringInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/instruction/InterpolateStringInstruction.java -------------------------------------------------------------------------------- /src/aya/instruction/LambdaInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/instruction/LambdaInstruction.java -------------------------------------------------------------------------------- /src/aya/instruction/ListBuilderInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/instruction/ListBuilderInstruction.java -------------------------------------------------------------------------------- /src/aya/instruction/ListLiteralInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/instruction/ListLiteralInstruction.java -------------------------------------------------------------------------------- /src/aya/instruction/StringLiteralInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/instruction/StringLiteralInstruction.java -------------------------------------------------------------------------------- /src/aya/instruction/TupleInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/instruction/TupleInstruction.java -------------------------------------------------------------------------------- /src/aya/instruction/flag/FlagInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/instruction/flag/FlagInstruction.java -------------------------------------------------------------------------------- /src/aya/instruction/flag/PopCallstackInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/instruction/flag/PopCallstackInstruction.java -------------------------------------------------------------------------------- /src/aya/instruction/flag/PopVarFlagInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/instruction/flag/PopVarFlagInstruction.java -------------------------------------------------------------------------------- /src/aya/instruction/index/AnonGetIndexInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/instruction/index/AnonGetIndexInstruction.java -------------------------------------------------------------------------------- /src/aya/instruction/index/GetExprIndexInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/instruction/index/GetExprIndexInstruction.java -------------------------------------------------------------------------------- /src/aya/instruction/index/GetIndexInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/instruction/index/GetIndexInstruction.java -------------------------------------------------------------------------------- /src/aya/instruction/index/GetNumberIndexInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/instruction/index/GetNumberIndexInstruction.java -------------------------------------------------------------------------------- /src/aya/instruction/index/GetObjIndexInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/instruction/index/GetObjIndexInstruction.java -------------------------------------------------------------------------------- /src/aya/instruction/index/GetVarIndexInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/instruction/index/GetVarIndexInstruction.java -------------------------------------------------------------------------------- /src/aya/instruction/index/SetExprIndexInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/instruction/index/SetExprIndexInstruction.java -------------------------------------------------------------------------------- /src/aya/instruction/index/SetIndexInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/instruction/index/SetIndexInstruction.java -------------------------------------------------------------------------------- /src/aya/instruction/index/SetNumberIndexInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/instruction/index/SetNumberIndexInstruction.java -------------------------------------------------------------------------------- /src/aya/instruction/index/SetObjIndexInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/instruction/index/SetObjIndexInstruction.java -------------------------------------------------------------------------------- /src/aya/instruction/index/SetVarIndexInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/instruction/index/SetVarIndexInstruction.java -------------------------------------------------------------------------------- /src/aya/instruction/named/NamedInstructionStore.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/instruction/named/NamedInstructionStore.java -------------------------------------------------------------------------------- /src/aya/instruction/named/NamedOperator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/instruction/named/NamedOperator.java -------------------------------------------------------------------------------- /src/aya/instruction/named/NamedOperatorInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/instruction/named/NamedOperatorInstruction.java -------------------------------------------------------------------------------- /src/aya/instruction/op/ColonOps.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/instruction/op/ColonOps.java -------------------------------------------------------------------------------- /src/aya/instruction/op/DotOps.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/instruction/op/DotOps.java -------------------------------------------------------------------------------- /src/aya/instruction/op/MiscOps.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/instruction/op/MiscOps.java -------------------------------------------------------------------------------- /src/aya/instruction/op/OpDoc.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/instruction/op/OpDoc.java -------------------------------------------------------------------------------- /src/aya/instruction/op/OpDocReader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/instruction/op/OpDocReader.java -------------------------------------------------------------------------------- /src/aya/instruction/op/OpInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/instruction/op/OpInfo.java -------------------------------------------------------------------------------- /src/aya/instruction/op/Operator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/instruction/op/Operator.java -------------------------------------------------------------------------------- /src/aya/instruction/op/OperatorInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/instruction/op/OperatorInstruction.java -------------------------------------------------------------------------------- /src/aya/instruction/op/Ops.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/instruction/op/Ops.java -------------------------------------------------------------------------------- /src/aya/instruction/op/overload/OpOverload.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/instruction/op/overload/OpOverload.java -------------------------------------------------------------------------------- /src/aya/instruction/op/overload/OpOverload1Arg.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/instruction/op/overload/OpOverload1Arg.java -------------------------------------------------------------------------------- /src/aya/instruction/op/overload/OpOverload2Arg.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/instruction/op/overload/OpOverload2Arg.java -------------------------------------------------------------------------------- /src/aya/instruction/op/overload/OpOverloadNoOp.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/instruction/op/overload/OpOverloadNoOp.java -------------------------------------------------------------------------------- /src/aya/instruction/variable/GetCDictInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/instruction/variable/GetCDictInstruction.java -------------------------------------------------------------------------------- /src/aya/instruction/variable/GetKeyVariableInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/instruction/variable/GetKeyVariableInstruction.java -------------------------------------------------------------------------------- /src/aya/instruction/variable/GetVariableInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/instruction/variable/GetVariableInstruction.java -------------------------------------------------------------------------------- /src/aya/instruction/variable/QuoteGetKeyVariableInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/instruction/variable/QuoteGetKeyVariableInstruction.java -------------------------------------------------------------------------------- /src/aya/instruction/variable/QuoteGetVariableInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/instruction/variable/QuoteGetVariableInstruction.java -------------------------------------------------------------------------------- /src/aya/instruction/variable/SetKeyVariableInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/instruction/variable/SetKeyVariableInstruction.java -------------------------------------------------------------------------------- /src/aya/instruction/variable/SetVariableInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/instruction/variable/SetVariableInstruction.java -------------------------------------------------------------------------------- /src/aya/instruction/variable/VariableInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/instruction/variable/VariableInstruction.java -------------------------------------------------------------------------------- /src/aya/instruction/variable/assignment/Assignment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/instruction/variable/assignment/Assignment.java -------------------------------------------------------------------------------- /src/aya/instruction/variable/assignment/CopyAssignment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/instruction/variable/assignment/CopyAssignment.java -------------------------------------------------------------------------------- /src/aya/instruction/variable/assignment/SimpleAssignment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/instruction/variable/assignment/SimpleAssignment.java -------------------------------------------------------------------------------- /src/aya/instruction/variable/assignment/TypedAssignment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/instruction/variable/assignment/TypedAssignment.java -------------------------------------------------------------------------------- /src/aya/instruction/variable/assignment/UnpackAssignment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/instruction/variable/assignment/UnpackAssignment.java -------------------------------------------------------------------------------- /src/aya/io/StringOut.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/io/StringOut.java -------------------------------------------------------------------------------- /src/aya/io/fs/AbstractFilesystemIO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/io/fs/AbstractFilesystemIO.java -------------------------------------------------------------------------------- /src/aya/io/fs/FilesystemIO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/io/fs/FilesystemIO.java -------------------------------------------------------------------------------- /src/aya/io/fs/UnimplementedFilesystemIO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/io/fs/UnimplementedFilesystemIO.java -------------------------------------------------------------------------------- /src/aya/io/http/AbstractHTTPDownloader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/io/http/AbstractHTTPDownloader.java -------------------------------------------------------------------------------- /src/aya/io/http/HTTPDownloader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/io/http/HTTPDownloader.java -------------------------------------------------------------------------------- /src/aya/io/http/UnimplementedHTTPDownloader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/io/http/UnimplementedHTTPDownloader.java -------------------------------------------------------------------------------- /src/aya/io/stdin/EmptyInputWrapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/io/stdin/EmptyInputWrapper.java -------------------------------------------------------------------------------- /src/aya/io/stdin/InputWrapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/io/stdin/InputWrapper.java -------------------------------------------------------------------------------- /src/aya/io/stdin/ScannerInputWrapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/io/stdin/ScannerInputWrapper.java -------------------------------------------------------------------------------- /src/aya/obj/Obj.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/obj/Obj.java -------------------------------------------------------------------------------- /src/aya/obj/block/BlockHeader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/obj/block/BlockHeader.java -------------------------------------------------------------------------------- /src/aya/obj/block/BlockUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/obj/block/BlockUtils.java -------------------------------------------------------------------------------- /src/aya/obj/block/CheckReturnTypeGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/obj/block/CheckReturnTypeGenerator.java -------------------------------------------------------------------------------- /src/aya/obj/block/CheckReturnTypeInstance.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/obj/block/CheckReturnTypeInstance.java -------------------------------------------------------------------------------- /src/aya/obj/block/ConditionalUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/obj/block/ConditionalUtils.java -------------------------------------------------------------------------------- /src/aya/obj/block/NewLocalsInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/obj/block/NewLocalsInstruction.java -------------------------------------------------------------------------------- /src/aya/obj/block/StaticBlock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/obj/block/StaticBlock.java -------------------------------------------------------------------------------- /src/aya/obj/character/Char.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/obj/character/Char.java -------------------------------------------------------------------------------- /src/aya/obj/dict/Dict.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/obj/dict/Dict.java -------------------------------------------------------------------------------- /src/aya/obj/dict/DictIndexing.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/obj/dict/DictIndexing.java -------------------------------------------------------------------------------- /src/aya/obj/list/GenericList.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/obj/list/GenericList.java -------------------------------------------------------------------------------- /src/aya/obj/list/List.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/obj/list/List.java -------------------------------------------------------------------------------- /src/aya/obj/list/ListAlgorithms.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/obj/list/ListAlgorithms.java -------------------------------------------------------------------------------- /src/aya/obj/list/ListCollector.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/obj/list/ListCollector.java -------------------------------------------------------------------------------- /src/aya/obj/list/ListImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/obj/list/ListImpl.java -------------------------------------------------------------------------------- /src/aya/obj/list/ListIterationFunctions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/obj/list/ListIterationFunctions.java -------------------------------------------------------------------------------- /src/aya/obj/list/ListRangeUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/obj/list/ListRangeUtils.java -------------------------------------------------------------------------------- /src/aya/obj/list/NDListIterator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/obj/list/NDListIterator.java -------------------------------------------------------------------------------- /src/aya/obj/list/Permutations.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/obj/list/Permutations.java -------------------------------------------------------------------------------- /src/aya/obj/list/Str.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/obj/list/Str.java -------------------------------------------------------------------------------- /src/aya/obj/list/numberlist/DoubleList.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/obj/list/numberlist/DoubleList.java -------------------------------------------------------------------------------- /src/aya/obj/list/numberlist/NumberItemList.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/obj/list/numberlist/NumberItemList.java -------------------------------------------------------------------------------- /src/aya/obj/list/numberlist/NumberList.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/obj/list/numberlist/NumberList.java -------------------------------------------------------------------------------- /src/aya/obj/list/numberlist/NumberListOp.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/obj/list/numberlist/NumberListOp.java -------------------------------------------------------------------------------- /src/aya/obj/number/BaseConversion.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/obj/number/BaseConversion.java -------------------------------------------------------------------------------- /src/aya/obj/number/BigNum.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/obj/number/BigNum.java -------------------------------------------------------------------------------- /src/aya/obj/number/ComplexNum.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/obj/number/ComplexNum.java -------------------------------------------------------------------------------- /src/aya/obj/number/FractionNum.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/obj/number/FractionNum.java -------------------------------------------------------------------------------- /src/aya/obj/number/Num.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/obj/number/Num.java -------------------------------------------------------------------------------- /src/aya/obj/number/Number.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/obj/number/Number.java -------------------------------------------------------------------------------- /src/aya/obj/number/NumberMath.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/obj/number/NumberMath.java -------------------------------------------------------------------------------- /src/aya/obj/symbol/Symbol.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/obj/symbol/Symbol.java -------------------------------------------------------------------------------- /src/aya/obj/symbol/SymbolConstants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/obj/symbol/SymbolConstants.java -------------------------------------------------------------------------------- /src/aya/obj/symbol/SymbolTable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/obj/symbol/SymbolTable.java -------------------------------------------------------------------------------- /src/aya/parser/CharacterParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/parser/CharacterParser.java -------------------------------------------------------------------------------- /src/aya/parser/HeaderUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/parser/HeaderUtils.java -------------------------------------------------------------------------------- /src/aya/parser/Parser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/parser/Parser.java -------------------------------------------------------------------------------- /src/aya/parser/ParserString.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/parser/ParserString.java -------------------------------------------------------------------------------- /src/aya/parser/SourceString.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/parser/SourceString.java -------------------------------------------------------------------------------- /src/aya/parser/SourceStringRef.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/parser/SourceStringRef.java -------------------------------------------------------------------------------- /src/aya/parser/SpecialNumberParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/parser/SpecialNumberParser.java -------------------------------------------------------------------------------- /src/aya/parser/StringParseUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/parser/StringParseUtils.java -------------------------------------------------------------------------------- /src/aya/parser/token/TokenContainer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/parser/token/TokenContainer.java -------------------------------------------------------------------------------- /src/aya/parser/token/TokenQueue.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/parser/token/TokenQueue.java -------------------------------------------------------------------------------- /src/aya/parser/token/TokenStack.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/parser/token/TokenStack.java -------------------------------------------------------------------------------- /src/aya/parser/tokens/BlockToken.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/parser/tokens/BlockToken.java -------------------------------------------------------------------------------- /src/aya/parser/tokens/CDictToken.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/parser/tokens/CDictToken.java -------------------------------------------------------------------------------- /src/aya/parser/tokens/CharToken.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/parser/tokens/CharToken.java -------------------------------------------------------------------------------- /src/aya/parser/tokens/CollectionToken.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/parser/tokens/CollectionToken.java -------------------------------------------------------------------------------- /src/aya/parser/tokens/CurrentFileToken.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/parser/tokens/CurrentFileToken.java -------------------------------------------------------------------------------- /src/aya/parser/tokens/DictToken.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/parser/tokens/DictToken.java -------------------------------------------------------------------------------- /src/aya/parser/tokens/EscapedToken.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/parser/tokens/EscapedToken.java -------------------------------------------------------------------------------- /src/aya/parser/tokens/KeyVarToken.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/parser/tokens/KeyVarToken.java -------------------------------------------------------------------------------- /src/aya/parser/tokens/LambdaToken.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/parser/tokens/LambdaToken.java -------------------------------------------------------------------------------- /src/aya/parser/tokens/ListToken.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/parser/tokens/ListToken.java -------------------------------------------------------------------------------- /src/aya/parser/tokens/NamedOpToken.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/parser/tokens/NamedOpToken.java -------------------------------------------------------------------------------- /src/aya/parser/tokens/NumberToken.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/parser/tokens/NumberToken.java -------------------------------------------------------------------------------- /src/aya/parser/tokens/OperatorToken.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/parser/tokens/OperatorToken.java -------------------------------------------------------------------------------- /src/aya/parser/tokens/SpecialToken.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/parser/tokens/SpecialToken.java -------------------------------------------------------------------------------- /src/aya/parser/tokens/StdToken.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/parser/tokens/StdToken.java -------------------------------------------------------------------------------- /src/aya/parser/tokens/StringToken.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/parser/tokens/StringToken.java -------------------------------------------------------------------------------- /src/aya/parser/tokens/SymbolToken.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/parser/tokens/SymbolToken.java -------------------------------------------------------------------------------- /src/aya/parser/tokens/Token.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/parser/tokens/Token.java -------------------------------------------------------------------------------- /src/aya/parser/tokens/VarToken.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/parser/tokens/VarToken.java -------------------------------------------------------------------------------- /src/aya/util/AWTKeyDecoder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/util/AWTKeyDecoder.java -------------------------------------------------------------------------------- /src/aya/util/BlockReader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/util/BlockReader.java -------------------------------------------------------------------------------- /src/aya/util/Casting.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/util/Casting.java -------------------------------------------------------------------------------- /src/aya/util/CharUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/util/CharUtils.java -------------------------------------------------------------------------------- /src/aya/util/CircleIterator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/util/CircleIterator.java -------------------------------------------------------------------------------- /src/aya/util/ColorFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/util/ColorFactory.java -------------------------------------------------------------------------------- /src/aya/util/DictReader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/util/DictReader.java -------------------------------------------------------------------------------- /src/aya/util/FileUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/util/FileUtils.java -------------------------------------------------------------------------------- /src/aya/util/LRUCache.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/util/LRUCache.java -------------------------------------------------------------------------------- /src/aya/util/MathUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/util/MathUtils.java -------------------------------------------------------------------------------- /src/aya/util/NamedCharacters.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/util/NamedCharacters.java -------------------------------------------------------------------------------- /src/aya/util/ObjToColor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/util/ObjToColor.java -------------------------------------------------------------------------------- /src/aya/util/Pair.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/util/Pair.java -------------------------------------------------------------------------------- /src/aya/util/SizeBoundedQueue.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/util/SizeBoundedQueue.java -------------------------------------------------------------------------------- /src/aya/util/StaticDictReader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/util/StaticDictReader.java -------------------------------------------------------------------------------- /src/aya/util/StringSearch.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/util/StringSearch.java -------------------------------------------------------------------------------- /src/aya/util/StringUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/util/StringUtils.java -------------------------------------------------------------------------------- /src/aya/util/Sym.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/util/Sym.java -------------------------------------------------------------------------------- /src/aya/util/Triple.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/util/Triple.java -------------------------------------------------------------------------------- /src/aya/util/TypeUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/util/TypeUtils.java -------------------------------------------------------------------------------- /src/aya/util/UTF16.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/util/UTF16.java -------------------------------------------------------------------------------- /src/aya/util/VectorizedFunctions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/util/VectorizedFunctions.java -------------------------------------------------------------------------------- /src/aya/util/stringsearch/ExactMatcher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/util/stringsearch/ExactMatcher.java -------------------------------------------------------------------------------- /src/aya/util/stringsearch/FuzzyMatcher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/util/stringsearch/FuzzyMatcher.java -------------------------------------------------------------------------------- /src/aya/util/stringsearch/MatchInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/util/stringsearch/MatchInfo.java -------------------------------------------------------------------------------- /src/aya/util/stringsearch/MatchPosition.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/util/stringsearch/MatchPosition.java -------------------------------------------------------------------------------- /src/aya/util/stringsearch/RegexMatcher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/util/stringsearch/RegexMatcher.java -------------------------------------------------------------------------------- /src/aya/util/stringsearch/SearchMode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/util/stringsearch/SearchMode.java -------------------------------------------------------------------------------- /src/aya/util/stringsearch/StringMatcher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/util/stringsearch/StringMatcher.java -------------------------------------------------------------------------------- /src/aya/util/stringsearch/StringMatcherFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/util/stringsearch/StringMatcherFactory.java -------------------------------------------------------------------------------- /src/aya/variable/VariableData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/aya/variable/VariableData.java -------------------------------------------------------------------------------- /src/test/AyaTestCases.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/test/AyaTestCases.java -------------------------------------------------------------------------------- /src/test/Stopwatch.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/test/Stopwatch.java -------------------------------------------------------------------------------- /src/test/Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/test/Test.java -------------------------------------------------------------------------------- /src/test/TestCase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/test/TestCase.java -------------------------------------------------------------------------------- /src/test/obj/list/StrTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/test/obj/list/StrTest.java -------------------------------------------------------------------------------- /src/test/obj/list/numberlist/NumberItemListTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/test/obj/list/numberlist/NumberItemListTest.java -------------------------------------------------------------------------------- /src/test/obj/number/FractionNumTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/test/obj/number/FractionNumTest.java -------------------------------------------------------------------------------- /src/test/obj/number/NumberBinaryOpsTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/test/obj/number/NumberBinaryOpsTest.java -------------------------------------------------------------------------------- /src/test/obj/number/NumberTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/test/obj/number/NumberTest.java -------------------------------------------------------------------------------- /src/ui/AyaIDE.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/ui/AyaIDE.java -------------------------------------------------------------------------------- /src/ui/CodeTextPane.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/ui/CodeTextPane.java -------------------------------------------------------------------------------- /src/ui/ConsoleWindow.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/ui/ConsoleWindow.java -------------------------------------------------------------------------------- /src/ui/EditorWindow.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/ui/EditorWindow.java -------------------------------------------------------------------------------- /src/ui/InputLine.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/ui/InputLine.java -------------------------------------------------------------------------------- /src/ui/MyConsole.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/ui/MyConsole.java -------------------------------------------------------------------------------- /src/ui/QuickSearch.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/ui/QuickSearch.java -------------------------------------------------------------------------------- /src/ui/StyleTheme.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/ui/StyleTheme.java -------------------------------------------------------------------------------- /src/ui/TextPaneInputStream.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/ui/TextPaneInputStream.java -------------------------------------------------------------------------------- /src/ui/TextPanePrintStream.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/ui/TextPanePrintStream.java -------------------------------------------------------------------------------- /src/ui/components/FixedTextPane.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/ui/components/FixedTextPane.java -------------------------------------------------------------------------------- /src/ui/settings/ISettings.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/ui/settings/ISettings.java -------------------------------------------------------------------------------- /src/ui/settings/QuickSearchSettings.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/ui/settings/QuickSearchSettings.java -------------------------------------------------------------------------------- /src/ui/settings/SettingsManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/ui/settings/SettingsManager.java -------------------------------------------------------------------------------- /src/ui/settings/UiSettings.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/ui/settings/UiSettings.java -------------------------------------------------------------------------------- /src/web/AyaWeb.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/web/AyaWeb.java -------------------------------------------------------------------------------- /src/web/StringPath.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/web/StringPath.java -------------------------------------------------------------------------------- /src/web/WebAvailableNamedInstructionStore.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/web/WebAvailableNamedInstructionStore.java -------------------------------------------------------------------------------- /src/web/WebFilesystemIO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/src/web/WebFilesystemIO.java -------------------------------------------------------------------------------- /std/asciiart.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/std/asciiart.aya -------------------------------------------------------------------------------- /std/asciitable.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/std/asciitable.aya -------------------------------------------------------------------------------- /std/bitset.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/std/bitset.aya -------------------------------------------------------------------------------- /std/canvas.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/std/canvas.aya -------------------------------------------------------------------------------- /std/color.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/std/color.aya -------------------------------------------------------------------------------- /std/csv.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/std/csv.aya -------------------------------------------------------------------------------- /std/dataframe.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/std/dataframe.aya -------------------------------------------------------------------------------- /std/date.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/std/date.aya -------------------------------------------------------------------------------- /std/dialog.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/std/dialog.aya -------------------------------------------------------------------------------- /std/docs.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/std/docs.aya -------------------------------------------------------------------------------- /std/enum.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/std/enum.aya -------------------------------------------------------------------------------- /std/golf.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/std/golf.aya -------------------------------------------------------------------------------- /std/image.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/std/image.aya -------------------------------------------------------------------------------- /std/io.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/std/io.aya -------------------------------------------------------------------------------- /std/json.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/std/json.aya -------------------------------------------------------------------------------- /std/la.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/std/la.aya -------------------------------------------------------------------------------- /std/map.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/std/map.aya -------------------------------------------------------------------------------- /std/math.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/std/math.aya -------------------------------------------------------------------------------- /std/missing.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/std/missing.aya -------------------------------------------------------------------------------- /std/mp.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/std/mp.aya -------------------------------------------------------------------------------- /std/pkg.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/std/pkg.aya -------------------------------------------------------------------------------- /std/plot.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/std/plot.aya -------------------------------------------------------------------------------- /std/queue.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/std/queue.aya -------------------------------------------------------------------------------- /std/random.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/std/random.aya -------------------------------------------------------------------------------- /std/rdatasets.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/std/rdatasets.aya -------------------------------------------------------------------------------- /std/set.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/std/set.aya -------------------------------------------------------------------------------- /std/shell.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/std/shell.aya -------------------------------------------------------------------------------- /std/socket.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/std/socket.aya -------------------------------------------------------------------------------- /std/stack.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/std/stack.aya -------------------------------------------------------------------------------- /std/stats.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/std/stats.aya -------------------------------------------------------------------------------- /std/sys.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/std/sys.aya -------------------------------------------------------------------------------- /std/terminal.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/std/terminal.aya -------------------------------------------------------------------------------- /std/threading.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/std/threading.aya -------------------------------------------------------------------------------- /std/time.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/std/time.aya -------------------------------------------------------------------------------- /std/turtle.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/std/turtle.aya -------------------------------------------------------------------------------- /std/unit.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/std/unit.aya -------------------------------------------------------------------------------- /std/versionstr.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/std/versionstr.aya -------------------------------------------------------------------------------- /std/viewmat.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/std/viewmat.aya -------------------------------------------------------------------------------- /test/base/test_block.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/test/base/test_block.aya -------------------------------------------------------------------------------- /test/base/test_char.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/test/base/test_char.aya -------------------------------------------------------------------------------- /test/base/test_list.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/test/base/test_list.aya -------------------------------------------------------------------------------- /test/base/test_num.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/test/base/test_num.aya -------------------------------------------------------------------------------- /test/base/test_str.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/test/base/test_str.aya -------------------------------------------------------------------------------- /test/base/test_sym.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/test/base/test_sym.aya -------------------------------------------------------------------------------- /test/broadcast.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/test/broadcast.aya -------------------------------------------------------------------------------- /test/colon_ops.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/test/colon_ops.aya -------------------------------------------------------------------------------- /test/core.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/test/core.aya -------------------------------------------------------------------------------- /test/dot_ops.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/test/dot_ops.aya -------------------------------------------------------------------------------- /test/examples.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/test/examples.aya -------------------------------------------------------------------------------- /test/filesystem.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/test/filesystem.aya -------------------------------------------------------------------------------- /test/golf/golf_examples.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/test/golf/golf_examples.aya -------------------------------------------------------------------------------- /test/lib/example/ExampleStore.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/test/lib/example/ExampleStore.java -------------------------------------------------------------------------------- /test/lib/example/aya.instruction.named.NamedInstructionStore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/test/lib/example/aya.instruction.named.NamedInstructionStore -------------------------------------------------------------------------------- /test/lib/example/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/test/lib/example/build.xml -------------------------------------------------------------------------------- /test/lib/lib.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/test/lib/lib.aya -------------------------------------------------------------------------------- /test/list.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/test/list.aya -------------------------------------------------------------------------------- /test/misc.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/test/misc.aya -------------------------------------------------------------------------------- /test/ops.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/test/ops.aya -------------------------------------------------------------------------------- /test/range.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/test/range.aya -------------------------------------------------------------------------------- /test/repr.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/test/repr.aya -------------------------------------------------------------------------------- /test/return_types.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/test/return_types.aya -------------------------------------------------------------------------------- /test/std/test_color.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/test/std/test_color.aya -------------------------------------------------------------------------------- /test/std/test_csv.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/test/std/test_csv.aya -------------------------------------------------------------------------------- /test/std/test_date.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/test/std/test_date.aya -------------------------------------------------------------------------------- /test/std/test_enum.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/test/std/test_enum.aya -------------------------------------------------------------------------------- /test/std/test_io.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/test/std/test_io.aya -------------------------------------------------------------------------------- /test/std/test_json.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/test/std/test_json.aya -------------------------------------------------------------------------------- /test/std/test_la.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/test/std/test_la.aya -------------------------------------------------------------------------------- /test/std/test_map.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/test/std/test_map.aya -------------------------------------------------------------------------------- /test/std/test_math.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/test/std/test_math.aya -------------------------------------------------------------------------------- /test/std/test_queue.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/test/std/test_queue.aya -------------------------------------------------------------------------------- /test/std/test_set.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/test/std/test_set.aya -------------------------------------------------------------------------------- /test/std/test_stack.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/test/std/test_stack.aya -------------------------------------------------------------------------------- /test/std/test_stats.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/test/std/test_stats.aya -------------------------------------------------------------------------------- /test/test.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/test/test.aya -------------------------------------------------------------------------------- /test/test_op_overload.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/test/test_op_overload.aya -------------------------------------------------------------------------------- /test/types.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/test/types.aya -------------------------------------------------------------------------------- /test/unicode.aya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-lang/aya/HEAD/test/unicode.aya --------------------------------------------------------------------------------