Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(546)

Issue 1659163007: Rename fletch -> dartino (Closed)

Created:
4 years, 10 months ago by ricow1
Modified:
4 years, 10 months ago
CC:
dartino+reviews_googlegroups.com, lukechurch
Base URL:
https://github.com/dartino/sdk.git@master
Target Ref:
refs/heads/master
Visibility:
Public.

Description

Rename fletch -> dartino Here is what I did, manual steps commented out since this can be run as a script: rm -rf third_party # Don't replace inside third_party packages git reset --hard HEAD mv .git /tmp/.git # don't replace in the index :-) find . -type f -exec sed -i 's/fletch/dartino/g' {} + find . -type f -exec sed -i 's/Fletch/Dartino/g' {} + find . -type f -exec sed -i 's/FLETCH/DARTINO/g' {} + find . -type f -exec sed -i 's/dartinoc/dartino_compiler/g' {} + # We still use dart-dependencies-fletch for now for getting third_party deps find . -type f -exec sed -i 's/dart-dependencies-dartino/dart-dependencies-fletch/g' {} + # No rename of bot script (tools/bots/fletch.py), will do that in a follow up mv /tmp/.git .git git mv pkg/fletch_sdk_readme.md pkg/dartino_sdk_readme.md git mv pkg/async_helper/fletch.patch pkg/async_helper/dartino.patch git mv pkg/async_helper/README-fletch.md pkg/async_helper/README-dartino.md git mv pkg/fletch_agent pkg/dartino_agent git mv pkg/immi_samples/lib/android/src/main/com/google/fletch pkg/immi_samples/lib/android/src/main/com/google/dartino git mv pkg/fletch pkg/dartino git mv pkg/dartino/lib/fletch.dart pkg/dartino/lib/dartino.dart git mv tests/fletch_tests tests/dartino_tests git mv tests/dartino_tests/fletch_test_suite.dart tests/dartino_tests/dartino_test_suite.dart git mv tests/dartino_tests/fletch_tests.status tests/dartino_tests/dartino_tests.status git mv tests/pkg/fletch_agent tests/pkg/dartino_agent git mv platforms/raspberry-pi2/data/depend.start.fletch.wheezy platforms/raspberry-pi2/data/depend.start.dartino.wheezy git mv platforms/raspberry-pi2/data/depend.start.fletch.jessie platforms/raspberry-pi2/data/depend.start.dartino.jessie git mv platforms/raspberry-pi2/data/depend.stop.fletch.wheezy platforms/raspberry-pi2/data/depend.stop.dartino.wheezy git mv platforms/raspberry-pi2/data/depend.stop.fletch.jessie platforms/raspberry-pi2/data/depend.stop.dartino.jessie git mv platforms/stm/event_handler_test/src/fletch_entry.cc platforms/stm/event_handler_test/src/dartino_entry.cc git mv platforms/stm/disco_fletch platforms/stm/disco_dartino git mv platforms/stm/disco_dartino/disco_fletch.gyp platforms/stm/disco_dartino/disco_dartino.gyp git mv platforms/stm/disco_dartino/src/fletch_entry.cc platforms/stm/disco_dartino/src/dartino_entry.cc git mv platforms/stm/disco_dartino/src/fletch_entry.h platforms/stm/disco_dartino/src/dartino_entry.h git mv platforms/stm/disco_dartino/disco_fletch.ioc platforms/stm/disco_dartino/disco_dartino.ioc git mv tools/run_fletch_agent tools/run_dartino_agent git mv tools/raspberry-pi2/raspbian-scripts/fletch-configuration tools/raspberry-pi2/raspbian-scripts/dartino-configuration git mv tools/testing/dart/fletch_test_suite.dart tools/testing/dart/dartino_test_suite.dart git mv tools/testing/dart/fletch_session_command.dart tools/testing/dart/dartino_session_command.dart git mv tools/testing/dart/fletch_warnings_suite.dart tools/testing/dart/dartino_warnings_suite.dart git mv tools/bots/sdk_fletch_patched.py tools/bots/sdk_dartino_patched.py git mv tools/bots/fletch_namer.py tools/bots/dartino_namer.py git mv tools/fletchc_blaze.dart tools/dartinoc_blaze.dart git mv tools/servicec/lib/src/resources/java/fletch tools/servicec/lib/src/resources/java/dartino git mv samples/github/android/GithubMock/app/src/main/java/com/google/fletch samples/github/android/GithubMock/app/src/main/java/com/google/dartino git mv samples/github/android/GithubSample/app/src/main/java/com/google/fletch samples/github/android/GithubSample/app/src/main/java/com/google/dartino git mv samples/github/android/GithubSample/app/src/androidTest/java/com/google/fletch samples/github/android/GithubSample/app/src/androidTest/java/com/google/dartino git mv samples/github/lib/src/github_mock_data/repos/dart-lang/fletch.data samples/github/lib/src/github_mock_data/repos/dart-lang/dartino.data git mv samples/github/lib/src/github_mock_data/repos/dart-lang/fletch samples/github/lib/src/github_mock_data/repos/dart-lang/dartino git mv samples/todomvc/android/TodoMVC/app/src/main/java/com/google/fletch samples/todomvc/android/TodoMVC/app/src/main/java/com/google/dartino git mv samples/todomvc/android/TodoMVC/app/src/androidTest/java/com/google/fletch samples/todomvc/android/TodoMVC/app/src/androidTest/java/com/google/dartino git mv lib/fletch_mobile.platform lib/dartino_mobile.platform git mv lib/fletch_embedded.platform lib/dartino_embedded.platform git mv lib/fletch lib/dartino git mv lib/dartino/fletch.dart lib/dartino/dartino.dart git mv .fletch-settings .dartino-settings git mv include/fletch_relocation_api.h include/dartino_relocation_api.h git mv include/fletch_api.h include/dartino_api.h git mv embedded.fletch-settings embedded.dartino-settings git mv fletch.gyp dartino.gyp git mv src/shared/fletch.h src/shared/dartino.h git mv src/shared/fletch.cc src/shared/dartino.cc git mv src/vm/fletch_api_impl.cc src/vm/dartino_api_impl.cc git mv src/vm/fletch.cc src/vm/dartino.cc git mv src/vm/fletch_relocation_api_impl.cc src/vm/dartino_relocation_api_impl.cc git mv src/vm/fletch_relocation_api_impl.h src/vm/dartino_relocation_api_impl.h git mv src/vm/fletch_api_impl.h src/vm/dartino_api_impl.h git mv pkg/fletchc pkg/dartino_compiler git mv pkg/dartino_compiler/samples/fletchc_driver pkg/dartino_compiler/samples/dartino_compiler_driver git mv pkg/dartino_compiler/lib/fletch_vm.dart pkg/dartino_compiler/lib/dartino_vm.dart git mv pkg/dartino_compiler/lib/fletch_system.dart pkg/dartino_compiler/lib/dartino_system.dart git mv pkg/dartino_compiler/lib/fletch_compiler.dart pkg/dartino_compiler/lib/dartino_compiler.dart git mv pkg/dartino_compiler/lib/incremental/fletchc_incremental.dart pkg/dartino_compiler/lib/incremental/dartino_compiler_incremental.dart git mv pkg/dartino_compiler/lib/incremental/fletch_reuser.dart pkg/dartino_compiler/lib/incremental/dartino_reuser.dart git mv pkg/dartino_compiler/lib/src/fletch_diagnostic_reporter.dart pkg/dartino_compiler/lib/src/dartino_diagnostic_reporter.dart git mv pkg/dartino_compiler/lib/src/fletch_system_builder.dart pkg/dartino_compiler/lib/src/dartino_system_builder.dart git mv pkg/dartino_compiler/lib/src/fletch_compiler_implementation.dart pkg/dartino_compiler/lib/src/dartino_compiler_implementation.dart git mv pkg/dartino_compiler/lib/src/fletch_selector.dart pkg/dartino_compiler/lib/src/dartino_selector.dart git mv pkg/dartino_compiler/lib/src/fletch_registry.dart pkg/dartino_compiler/lib/src/dartino_registry.dart git mv pkg/dartino_compiler/lib/src/fletch_system_printer.dart pkg/dartino_compiler/lib/src/dartino_system_printer.dart git mv pkg/dartino_compiler/lib/src/fletch_constants.dart pkg/dartino_compiler/lib/src/dartino_constants.dart git mv pkg/dartino_compiler/lib/src/fletch_class_builder.dart pkg/dartino_compiler/lib/src/dartino_class_builder.dart git mv pkg/dartino_compiler/lib/src/fletch_enqueuer.dart pkg/dartino_compiler/lib/src/dartino_enqueuer.dart git mv pkg/dartino_compiler/lib/src/fletch_context.dart pkg/dartino_compiler/lib/src/dartino_context.dart git mv pkg/dartino_compiler/lib/src/fletch_native_descriptor.dart pkg/dartino_compiler/lib/src/dartino_native_descriptor.dart git mv pkg/dartino_compiler/lib/src/fletch_backend.dart pkg/dartino_compiler/lib/src/dartino_backend.dart git mv pkg/dartino_compiler/lib/src/fletch_function_builder.dart pkg/dartino_compiler/lib/src/dartino_function_builder.dart git mv tests/fletchc tests/dartino_compiler git mv third_party/lk/fletch third_party/lk/dartino git mv third_party/lk/dartino/project/stm32746g-eval2-fletch.mk third_party/lk/dartino/project/stm32746g-eval2-dartino.mk git mv third_party/lk/dartino/project/add-fletch-snapshot-section.ld third_party/lk/dartino/project/add-dartino-snapshot-section.ld git mv third_party/lk/dartino/project/qemu-virt-fletch.mk third_party/lk/dartino/project/qemu-virt-dartino.mk git mv third_party/lk/dartino/project/stm32f746g-disco-fletch.mk third_party/lk/dartino/project/stm32f746g-disco-dartino.mk git mv third_party/lk/dartino/app/fletch-fixed third_party/lk/dartino/app/dartino-fixed git mv third_party/lk/dartino/app/fletch third_party/lk/dartino/app/dartino gclient sync # pull back dependencies # Manually fixup dartino_tests/mdns_tests/decode # Suppress github/lib/src/tests/github_api_test, don't know how test data is generated # Manually fixup dartino/app/dartino-fixed/rules.mk and dartino/app/dartino/rules.mk dartino_runner.c -> fletch_runner.c # Manually fixup dartino_tests/debugger/async_test # Manually fix long line in pkg/dartino_compiler/lib/src/verbs/documentation.dart # Manually fixup long lines reported by git cl presubmit R=ager@google.com, sgjesse@google.com BUG= Committed: https://github.com/dart-lang/dartino/commit/4c86cb1724a704917a0916b1457495d37b1990d1

Patch Set 1 #

Total comments: 10

Patch Set 2 : address comments #

Unified diffs Side-by-side diffs Delta from patch set Stats (+9863 lines, -108591 lines) Patch
M .clang-format View 1 1 chunk +1 line, -1 line 0 comments Download
A + .dartino-settings View 1 1 chunk +1 line, -1 line 0 comments Download
D .fletch-settings View 1 1 chunk +0 lines, -40 lines 0 comments Download
M .gitignore View 1 2 chunks +2 lines, -2 lines 0 comments Download
M .packages View 1 1 chunk +3 lines, -3 lines 0 comments Download
M .ycm_extra_conf.py View 1 2 chunks +8 lines, -8 lines 0 comments Download
M AUTHORS View 1 1 chunk +1 line, -1 line 0 comments Download
M DEPS View 1 1 chunk +1 line, -1 line 0 comments Download
M FletchPod.podspec View 1 1 chunk +1 line, -1 line 0 comments Download
M GNUmakefile View 1 1 chunk +1 line, -1 line 0 comments Download
M LICENSE.md View 1 1 chunk +1 line, -1 line 0 comments Download
M PRESUBMIT.py View 1 3 chunks +3 lines, -3 lines 0 comments Download
M WATCHLISTS View 1 2 chunks +3 lines, -3 lines 0 comments Download
M benchmarks/binary_size/FletchARMBinarySize.dart View 1 1 chunk +10 lines, -10 lines 0 comments Download
M benchmarks/messaging/InterProcessPort.dart View 1 1 chunk +1 line, -1 line 0 comments Download
M benchmarks/messaging/IntraProcessChannel.dart View 1 1 chunk +1 line, -1 line 0 comments Download
M benchmarks/messaging/IntraProcessPort.dart View 1 1 chunk +1 line, -1 line 0 comments Download
M benchmarks/messaging/ProcessSpawn.dart View 1 1 chunk +1 line, -1 line 0 comments Download
M benchmarks/messaging/utils.dart View 1 1 chunk +1 line, -1 line 0 comments Download
M benchmarks/socket/SocketBase.dart View 1 1 chunk +1 line, -1 line 0 comments Download
M build.ninja View 1 5 chunks +8 lines, -8 lines 0 comments Download
M build-windows.ninja View 1 2 chunks +2 lines, -2 lines 0 comments Download
M codereview.settings View 1 1 chunk +2 lines, -2 lines 0 comments Download
M common.gypi View 1 16 chunks +74 lines, -74 lines 0 comments Download
A + dartino.gyp View 1 2 chunks +5 lines, -5 lines 0 comments Download
M default_targets.gypi View 1 1 chunk +40 lines, -40 lines 0 comments Download
A + embedded.dartino-settings View 1 1 chunk +1 line, -1 line 0 comments Download
D embedded.fletch-settings View 1 1 chunk +0 lines, -34 lines 0 comments Download
D fletch.gyp View 1 1 chunk +0 lines, -102 lines 0 comments Download
A + include/dartino_api.h View 1 1 chunk +31 lines, -31 lines 0 comments Download
A + include/dartino_relocation_api.h View 1 2 chunks +8 lines, -8 lines 0 comments Download
D include/fletch_api.h View 1 1 chunk +0 lines, -106 lines 0 comments Download
D include/fletch_relocation_api.h View 1 1 chunk +0 lines, -39 lines 0 comments Download
M include/service_api.h View 1 2 chunks +10 lines, -10 lines 0 comments Download
M include/static_ffi.h View 1 3 chunks +30 lines, -29 lines 0 comments Download
M lib/async/async_patch.dart View 1 3 chunks +11 lines, -11 lines 0 comments Download
M lib/collection/collection_patch.dart View 1 1 chunk +2 lines, -2 lines 0 comments Download
M lib/convert/convert_patch.dart View 1 1 chunk +1 line, -1 line 0 comments Download
M lib/core/bigint.dart View 1 1 chunk +3 lines, -3 lines 0 comments Download
M lib/core/core_patch.dart View 1 11 chunks +26 lines, -26 lines 0 comments Download
M lib/core/double.dart View 1 5 chunks +30 lines, -30 lines 0 comments Download
M lib/core/embedded_core.dart View 1 2 chunks +4 lines, -4 lines 0 comments Download
M lib/core/embedded_core_patch.dart View 1 9 chunks +25 lines, -25 lines 0 comments Download
M lib/core/int.dart View 1 11 chunks +81 lines, -81 lines 0 comments Download
M lib/core/string.dart View 1 1 chunk +33 lines, -33 lines 0 comments Download
A + lib/dartino/dartino.dart View 1 14 chunks +46 lines, -46 lines 0 comments Download
A + lib/dartino_embedded.platform View 1 3 chunks +9 lines, -9 lines 0 comments Download
A + lib/dartino_mobile.platform View 1 3 chunks +9 lines, -9 lines 0 comments Download
M lib/ffi/ffi.dart View 1 7 chunks +65 lines, -65 lines 0 comments Download
M lib/ffi/utf.dart View 1 1 chunk +1 line, -1 line 0 comments Download
D lib/fletch/fletch.dart View 1 1 chunk +0 lines, -559 lines 0 comments Download
D lib/fletch_embedded.platform View 1 1 chunk +0 lines, -83 lines 0 comments Download
D lib/fletch_mobile.platform View 1 1 chunk +0 lines, -46 lines 0 comments Download
M lib/internal/internal_patch.dart View 1 1 chunk +3 lines, -3 lines 0 comments Download
M lib/math/math_patch.dart View 1 2 chunks +13 lines, -13 lines 0 comments Download
M lib/os/event_handler.dart View 1 2 chunks +7 lines, -7 lines 0 comments Download
M lib/os/native_process.dart View 1 2 chunks +2 lines, -2 lines 0 comments Download
M lib/os/os.dart View 1 1 chunk +4 lines, -4 lines 0 comments Download
M lib/service/service.dart View 1 1 chunk +5 lines, -5 lines 0 comments Download
M lib/system/list.dart View 1 1 chunk +1 line, -1 line 0 comments Download
M lib/system/map.dart View 1 1 chunk +1 line, -1 line 0 comments Download
M lib/system/nsm.dart View 1 1 chunk +8 lines, -8 lines 0 comments Download
M lib/system/system.dart View 1 3 chunks +4 lines, -4 lines 0 comments Download
M lib/typed_data/typed_data_patch.dart View 1 1 chunk +3 lines, -3 lines 0 comments Download
M lk_targets.gypi View 1 3 chunks +17 lines, -17 lines 0 comments Download
M mbed_targets.gypi View 1 1 chunk +8 lines, -8 lines 0 comments Download
A + pkg/async_helper/README-dartino.md View 1 1 chunk +2 lines, -2 lines 0 comments Download
D pkg/async_helper/README-fletch.md View 1 1 chunk +0 lines, -16 lines 0 comments Download
A + pkg/async_helper/dartino.patch View 1 1 chunk +1 line, -1 line 0 comments Download
D pkg/async_helper/fletch.patch View 1 1 chunk +0 lines, -49 lines 0 comments Download
M pkg/async_helper/lib/async_helper.dart View 1 1 chunk +1 line, -1 line 0 comments Download
A pkg/dartino/lib/_sdkext View 1 1 chunk +7 lines, -0 lines 0 comments Download
A + pkg/dartino/lib/dartino.dart View 1 1 chunk +3 lines, -3 lines 0 comments Download
A + pkg/dartino/pubspec.yaml View 1 1 chunk +1 line, -1 line 0 comments Download
A + pkg/dartino_agent/bin/agent.dart View 1 14 chunks +26 lines, -26 lines 0 comments Download
A + pkg/dartino_agent/lib/agent_connection.dart View 1 4 chunks +10 lines, -10 lines 0 comments Download
A + pkg/dartino_agent/lib/messages.dart View 1 8 chunks +29 lines, -29 lines 0 comments Download
A + pkg/dartino_agent/tool/client.dart View 1 6 chunks +11 lines, -11 lines 0 comments Download
A + pkg/dartino_compiler/.packages View 1 1 chunk +2 lines, -2 lines 0 comments Download
A + pkg/dartino_compiler/bin/decode_stacktraces.dart View 1 1 chunk +1 line, -1 line 0 comments Download
A + pkg/dartino_compiler/bin/decode_ticksamples.dart View 1 1 chunk +1 line, -1 line 0 comments Download
A + pkg/dartino_compiler/lib/back_trace.dart View 1 1 chunk +2 lines, -2 lines 0 comments Download
A + pkg/dartino_compiler/lib/bytecodes.dart View 1 1 chunk +1 line, -1 line 0 comments Download
A + pkg/dartino_compiler/lib/dartino_compiler.dart View 1 13 chunks +39 lines, -39 lines 0 comments Download
A + pkg/dartino_compiler/lib/dartino_system.dart View 1 16 chunks +62 lines, -62 lines 0 comments Download
A + pkg/dartino_compiler/lib/dartino_vm.dart View 1 6 chunks +6 lines, -6 lines 0 comments Download
A + pkg/dartino_compiler/lib/debug_state.dart View 1 3 chunks +12 lines, -12 lines 0 comments Download
A + pkg/dartino_compiler/lib/generate_bytecodes.dart View 1 1 chunk +1 line, -1 line 0 comments Download
A + pkg/dartino_compiler/lib/generated_bytecodes.dart View 1 1 chunk +1 line, -1 line 0 comments Download
A + pkg/dartino_compiler/lib/incremental/caching_compiler.dart View 1 3 chunks +5 lines, -5 lines 0 comments Download
A + pkg/dartino_compiler/lib/incremental/dartino_compiler_incremental.dart View 1 11 chunks +29 lines, -29 lines 0 comments Download
A + pkg/dartino_compiler/lib/incremental/dartino_reuser.dart View 1 7 chunks +54 lines, -54 lines 0 comments Download
A + pkg/dartino_compiler/lib/incremental/diff.dart View 1 2 chunks +2 lines, -2 lines 0 comments Download
A + pkg/dartino_compiler/lib/incremental/reuser.dart View 1 2 chunks +2 lines, -2 lines 0 comments Download
A + pkg/dartino_compiler/lib/incremental/scope_information_visitor.dart View 1 1 chunk +1 line, -1 line 0 comments Download
A + pkg/dartino_compiler/lib/incremental_backend.dart View 1 2 chunks +12 lines, -12 lines 0 comments Download
A + pkg/dartino_compiler/lib/input_handler.dart View 1 2 chunks +2 lines, -2 lines 0 comments Download
A + pkg/dartino_compiler/lib/program_info.dart View 1 10 chunks +19 lines, -19 lines 0 comments Download
A + pkg/dartino_compiler/lib/src/bytecode_assembler.dart View 1 1 chunk +1 line, -1 line 0 comments Download
A + pkg/dartino_compiler/lib/src/class_debug_info.dart View 1 1 chunk +5 lines, -5 lines 0 comments Download
A + pkg/dartino_compiler/lib/src/closure_environment.dart View 1 1 chunk +1 line, -1 line 0 comments Download
A + pkg/dartino_compiler/lib/src/codegen_visitor.dart View 1 29 chunks +59 lines, -59 lines 0 comments Download
A + pkg/dartino_compiler/lib/src/console_print.dart View 1 1 chunk +1 line, -1 line 0 comments Download
A + pkg/dartino_compiler/lib/src/constructor_codegen.dart View 1 6 chunks +15 lines, -15 lines 0 comments Download
A + pkg/dartino_compiler/lib/src/dartino_backend.dart View 1 61 chunks +222 lines, -222 lines 0 comments Download
A + pkg/dartino_compiler/lib/src/dartino_class_builder.dart View 1 20 chunks +55 lines, -55 lines 0 comments Download
A + pkg/dartino_compiler/lib/src/dartino_compiler_implementation.dart View 1 8 chunks +34 lines, -34 lines 0 comments Download
A + pkg/dartino_compiler/lib/src/dartino_constants.dart View 1 2 chunks +14 lines, -14 lines 0 comments Download
A + pkg/dartino_compiler/lib/src/dartino_context.dart View 1 8 chunks +35 lines, -35 lines 0 comments Download
A + pkg/dartino_compiler/lib/src/dartino_diagnostic_reporter.dart View 1 5 chunks +11 lines, -11 lines 0 comments Download
A + pkg/dartino_compiler/lib/src/dartino_enqueuer.dart View 1 8 chunks +18 lines, -18 lines 0 comments Download
A + pkg/dartino_compiler/lib/src/dartino_function_builder.dart View 1 7 chunks +31 lines, -31 lines 0 comments Download
A + pkg/dartino_compiler/lib/src/dartino_native_descriptor.dart View 1 3 chunks +8 lines, -8 lines 0 comments Download
A + pkg/dartino_compiler/lib/src/dartino_registry.dart View 1 3 chunks +8 lines, -8 lines 0 comments Download
A + pkg/dartino_compiler/lib/src/dartino_selector.dart View 1 3 chunks +4 lines, -4 lines 0 comments Download
A + pkg/dartino_compiler/lib/src/dartino_system_builder.dart View 1 31 chunks +135 lines, -135 lines 0 comments Download
A + pkg/dartino_compiler/lib/src/dartino_system_printer.dart View 1 11 chunks +42 lines, -42 lines 0 comments Download
A + pkg/dartino_compiler/lib/src/debug_info.dart View 1 3 chunks +6 lines, -6 lines 0 comments Download
A + pkg/dartino_compiler/lib/src/debug_info_constructor_codegen.dart View 1 3 chunks +13 lines, -13 lines 0 comments Download
A + pkg/dartino_compiler/lib/src/debug_info_function_codegen.dart View 1 2 chunks +7 lines, -7 lines 0 comments Download
A + pkg/dartino_compiler/lib/src/debug_info_lazy_field_initializer_codegen.dart View 1 3 chunks +9 lines, -9 lines 0 comments Download
A + pkg/dartino_compiler/lib/src/debug_registry.dart View 1 3 chunks +7 lines, -7 lines 0 comments Download
A + pkg/dartino_compiler/lib/src/device_type.dart View 1 1 chunk +2 lines, -2 lines 0 comments Download
A + pkg/dartino_compiler/lib/src/diagnostic.dart View 1 2 chunks +2 lines, -2 lines 0 comments Download
A + pkg/dartino_compiler/lib/src/dynamic_call_enqueuer.dart View 1 4 chunks +7 lines, -7 lines 0 comments Download
A + pkg/dartino_compiler/lib/src/enqueuer_mixin.dart View 1 1 chunk +2 lines, -2 lines 0 comments Download
A + pkg/dartino_compiler/lib/src/find_position_visitor.dart View 1 0 chunks +-1 lines, --1 lines 0 comments Download
A + pkg/dartino_compiler/lib/src/function_codegen.dart View 1 2 chunks +10 lines, -10 lines 0 comments Download
A pkg/dartino_compiler/lib/src/guess_configuration.dart View 1 1 chunk +65 lines, -0 lines 0 comments Download
A + pkg/dartino_compiler/lib/src/hub/client_commands.dart View 1 1 chunk +1 line, -1 line 0 comments Download
A + pkg/dartino_compiler/lib/src/hub/exit_codes.dart View 1 2 chunks +3 lines, -3 lines 0 comments Download
A + pkg/dartino_compiler/lib/src/hub/hub_main.dart View 1 14 chunks +23 lines, -23 lines 0 comments Download
A + pkg/dartino_compiler/lib/src/hub/sentence_parser.dart View 1 2 chunks +2 lines, -2 lines 0 comments Download
A + pkg/dartino_compiler/lib/src/hub/session_manager.dart View 1 7 chunks +22 lines, -22 lines 0 comments Download
A + pkg/dartino_compiler/lib/src/lazy_field_initializer_codegen.dart View 1 2 chunks +10 lines, -10 lines 0 comments Download
A + pkg/dartino_compiler/lib/src/message_examples.dart View 1 5 chunks +8 lines, -8 lines 0 comments Download
A + pkg/dartino_compiler/lib/src/messages.dart View 1 7 chunks +12 lines, -12 lines 0 comments Download
A + pkg/dartino_compiler/lib/src/model.dart View 1 1 chunk +1 line, -1 line 0 comments Download
A + pkg/dartino_compiler/lib/src/please_report_crash.dart View 1 3 chunks +4 lines, -4 lines 0 comments Download
A + pkg/dartino_compiler/lib/src/shared_command_infrastructure.dart View 1 1 chunk +1 line, -1 line 0 comments Download
A + pkg/dartino_compiler/lib/src/verbs/README.md View 1 4 chunks +9 lines, -9 lines 0 comments Download
A + pkg/dartino_compiler/lib/src/verbs/actions.dart View 1 3 chunks +3 lines, -3 lines 0 comments Download
A + pkg/dartino_compiler/lib/src/verbs/attach_verb.dart View 1 1 chunk +1 line, -1 line 0 comments Download
A + pkg/dartino_compiler/lib/src/verbs/compile_verb.dart View 1 1 chunk +1 line, -1 line 0 comments Download
A + pkg/dartino_compiler/lib/src/verbs/create_verb.dart View 1 1 chunk +1 line, -1 line 0 comments Download
A + pkg/dartino_compiler/lib/src/verbs/debug_verb.dart View 1 6 chunks +6 lines, -6 lines 0 comments Download
A + pkg/dartino_compiler/lib/src/verbs/documentation.dart View 1 6 chunks +13 lines, -12 lines 0 comments Download
A + pkg/dartino_compiler/lib/src/verbs/export_verb.dart View 1 1 chunk +1 line, -1 line 0 comments Download
A + pkg/dartino_compiler/lib/src/verbs/help_verb.dart View 1 1 chunk +1 line, -1 line 0 comments Download
A + pkg/dartino_compiler/lib/src/verbs/infrastructure.dart View 1 5 chunks +9 lines, -9 lines 0 comments Download
A + pkg/dartino_compiler/lib/src/verbs/options.dart View 1 1 chunk +1 line, -1 line 0 comments Download
A + pkg/dartino_compiler/lib/src/verbs/quit_verb.dart View 1 1 chunk +1 line, -1 line 0 comments Download
A + pkg/dartino_compiler/lib/src/verbs/run_verb.dart View 1 1 chunk +1 line, -1 line 0 comments Download
A + pkg/dartino_compiler/lib/src/verbs/show_verb.dart View 1 1 chunk +1 line, -1 line 0 comments Download
A + pkg/dartino_compiler/lib/src/verbs/x_download_tools_verb.dart View 1 1 chunk +2 lines, -2 lines 0 comments Download
A + pkg/dartino_compiler/lib/src/verbs/x_end_verb.dart View 1 1 chunk +1 line, -1 line 0 comments Download
A + pkg/dartino_compiler/lib/src/verbs/x_servicec_verb.dart View 1 3 chunks +3 lines, -3 lines 0 comments Download
A + pkg/dartino_compiler/lib/src/verbs/x_upgrade_verb.dart View 1 1 chunk +1 line, -1 line 0 comments Download
A + pkg/dartino_compiler/lib/src/worker/developer.dart View 1 35 chunks +83 lines, -83 lines 0 comments Download
A + pkg/dartino_compiler/lib/src/worker/worker_main.dart View 1 1 chunk +1 line, -1 line 0 comments Download
A + pkg/dartino_compiler/lib/src/zone_helper.dart View 1 1 chunk +1 line, -1 line 0 comments Download
A + pkg/dartino_compiler/lib/vm_command_reader.dart View 1 1 chunk +1 line, -1 line 0 comments Download
A + pkg/dartino_compiler/lib/vm_commands.dart View 1 2 chunks +2 lines, -2 lines 0 comments Download
A + pkg/dartino_compiler/lib/vm_session.dart View 1 22 chunks +51 lines, -51 lines 0 comments Download
A + pkg/dartino_compiler/samples/dartino_compiler_driver/target.dart View 1 0 chunks +-1 lines, --1 lines 0 comments Download
A + pkg/dartino_compiler/tests/compiler_api_test.dart View 1 1 chunk +14 lines, -14 lines 0 comments Download
A + pkg/dartino_sdk_readme.md View 1 0 chunks +-1 lines, --1 lines 0 comments Download
M pkg/ffi/lib/ffi.dart View 1 2 chunks +4 lines, -4 lines 0 comments Download
M pkg/file/lib/file.dart View 1 1 chunk +3 lines, -3 lines 0 comments Download
M pkg/flash_sd_card/lib/flash_sd_card.dart View 1 4 chunks +8 lines, -8 lines 0 comments Download
M pkg/flash_sd_card/lib/src/context.dart View 1 1 chunk +5 lines, -5 lines 0 comments Download
M pkg/flash_sd_card/lib/src/platform_service.dart View 1 1 chunk +1 line, -1 line 0 comments Download
D pkg/fletch/lib/_sdkext View 1 1 chunk +0 lines, -7 lines 0 comments Download
D pkg/fletch/lib/fletch.dart View 1 1 chunk +0 lines, -15 lines 0 comments Download
D pkg/fletch/pubspec.yaml View 1 1 chunk +0 lines, -6 lines 0 comments Download
D pkg/fletch_agent/bin/agent.dart View 1 1 chunk +0 lines, -462 lines 0 comments Download
D pkg/fletch_agent/lib/agent_connection.dart View 1 1 chunk +0 lines, -108 lines 0 comments Download
D pkg/fletch_agent/lib/messages.dart View 1 1 chunk +0 lines, -622 lines 0 comments Download
D pkg/fletch_agent/tool/client.dart View 1 1 chunk +0 lines, -170 lines 0 comments Download
D pkg/fletch_sdk_readme.md View 1 1 chunk +0 lines, -17 lines 0 comments Download
D pkg/fletchc/.packages View 1 1 chunk +0 lines, -21 lines 0 comments Download
D pkg/fletchc/bin/decode_stacktraces.dart View 1 1 chunk +0 lines, -14 lines 0 comments Download
D pkg/fletchc/bin/decode_ticksamples.dart View 1 1 chunk +0 lines, -12 lines 0 comments Download
D pkg/fletchc/lib/back_trace.dart View 1 1 chunk +0 lines, -212 lines 0 comments Download
D pkg/fletchc/lib/bytecodes.dart View 1 1 chunk +0 lines, -97 lines 0 comments Download
D pkg/fletchc/lib/debug_state.dart View 1 1 chunk +0 lines, -139 lines 0 comments Download
D pkg/fletchc/lib/fletch_compiler.dart View 1 1 chunk +0 lines, -341 lines 0 comments Download
D pkg/fletchc/lib/fletch_system.dart View 1 1 chunk +0 lines, -328 lines 0 comments Download
D pkg/fletchc/lib/fletch_vm.dart View 1 1 chunk +0 lines, -115 lines 0 comments Download
D pkg/fletchc/lib/generate_bytecodes.dart View 1 1 chunk +0 lines, -247 lines 0 comments Download
D pkg/fletchc/lib/generated_bytecodes.dart View 1 1 chunk +0 lines, -3989 lines 0 comments Download
D pkg/fletchc/lib/incremental/caching_compiler.dart View 1 1 chunk +0 lines, -137 lines 0 comments Download
D pkg/fletchc/lib/incremental/diff.dart View 1 1 chunk +0 lines, -158 lines 0 comments Download
D pkg/fletchc/lib/incremental/fletch_reuser.dart View 1 1 chunk +0 lines, -381 lines 0 comments Download
D pkg/fletchc/lib/incremental/fletchc_incremental.dart View 1 1 chunk +0 lines, -378 lines 0 comments Download
D pkg/fletchc/lib/incremental/reuser.dart View 1 1 chunk +0 lines, -1185 lines 0 comments Download
D pkg/fletchc/lib/incremental/scope_information_visitor.dart View 1 1 chunk +0 lines, -302 lines 0 comments Download
D pkg/fletchc/lib/incremental_backend.dart View 1 1 chunk +0 lines, -59 lines 0 comments Download
D pkg/fletchc/lib/input_handler.dart View 1 1 chunk +0 lines, -514 lines 0 comments Download
D pkg/fletchc/lib/program_info.dart View 1 1 chunk +0 lines, -876 lines 0 comments Download
D pkg/fletchc/lib/src/bytecode_assembler.dart View 1 1 chunk +0 lines, -670 lines 0 comments Download
D pkg/fletchc/lib/src/class_debug_info.dart View 1 1 chunk +0 lines, -31 lines 0 comments Download
D pkg/fletchc/lib/src/closure_environment.dart View 1 1 chunk +0 lines, -771 lines 0 comments Download
D pkg/fletchc/lib/src/codegen_visitor.dart View 1 1 chunk +0 lines, -3286 lines 0 comments Download
D pkg/fletchc/lib/src/console_print.dart View 1 1 chunk +0 lines, -22 lines 0 comments Download
D pkg/fletchc/lib/src/constructor_codegen.dart View 1 1 chunk +0 lines, -375 lines 0 comments Download
D pkg/fletchc/lib/src/debug_info.dart View 1 1 chunk +0 lines, -244 lines 0 comments Download
D pkg/fletchc/lib/src/debug_info_constructor_codegen.dart View 1 1 chunk +0 lines, -168 lines 0 comments Download
D pkg/fletchc/lib/src/debug_info_function_codegen.dart View 1 1 chunk +0 lines, -153 lines 0 comments Download
D pkg/fletchc/lib/src/debug_info_lazy_field_initializer_codegen.dart View 1 1 chunk +0 lines, -132 lines 0 comments Download
D pkg/fletchc/lib/src/debug_registry.dart View 1 1 chunk +0 lines, -66 lines 0 comments Download
D pkg/fletchc/lib/src/device_type.dart View 1 1 chunk +0 lines, -32 lines 0 comments Download
D pkg/fletchc/lib/src/diagnostic.dart View 1 1 chunk +0 lines, -260 lines 0 comments Download
D pkg/fletchc/lib/src/dynamic_call_enqueuer.dart View 1 1 chunk +0 lines, -297 lines 0 comments Download
D pkg/fletchc/lib/src/enqueuer_mixin.dart View 1 1 chunk +0 lines, -280 lines 0 comments Download
D pkg/fletchc/lib/src/find_position_visitor.dart View 1 1 chunk +0 lines, -45 lines 0 comments Download
D pkg/fletchc/lib/src/fletch_backend.dart View 1 1 chunk +0 lines, -1788 lines 0 comments Download
D pkg/fletchc/lib/src/fletch_class_builder.dart View 1 1 chunk +0 lines, -403 lines 0 comments Download
D pkg/fletchc/lib/src/fletch_compiler_implementation.dart View 1 1 chunk +0 lines, -286 lines 0 comments Download
D pkg/fletchc/lib/src/fletch_constants.dart View 1 1 chunk +0 lines, -81 lines 0 comments Download
D pkg/fletchc/lib/src/fletch_context.dart View 1 1 chunk +0 lines, -256 lines 0 comments Download
D pkg/fletchc/lib/src/fletch_diagnostic_reporter.dart View 1 1 chunk +0 lines, -83 lines 0 comments Download
D pkg/fletchc/lib/src/fletch_enqueuer.dart View 1 1 chunk +0 lines, -340 lines 0 comments Download
D pkg/fletchc/lib/src/fletch_function_builder.dart View 1 1 chunk +0 lines, -174 lines 0 comments Download
D pkg/fletchc/lib/src/fletch_native_descriptor.dart View 1 1 chunk +0 lines, -63 lines 0 comments Download
D pkg/fletchc/lib/src/fletch_registry.dart View 1 1 chunk +0 lines, -126 lines 0 comments Download
D pkg/fletchc/lib/src/fletch_selector.dart View 1 1 chunk +0 lines, -50 lines 0 comments Download
D pkg/fletchc/lib/src/fletch_system_builder.dart View 1 1 chunk +0 lines, -739 lines 0 comments Download
D pkg/fletchc/lib/src/fletch_system_printer.dart View 1 1 chunk +0 lines, -231 lines 0 comments Download
D pkg/fletchc/lib/src/function_codegen.dart View 1 1 chunk +0 lines, -134 lines 0 comments Download
D pkg/fletchc/lib/src/guess_configuration.dart View 1 1 chunk +0 lines, -65 lines 0 comments Download
D pkg/fletchc/lib/src/hub/client_commands.dart View 1 1 chunk +0 lines, -123 lines 0 comments Download
D pkg/fletchc/lib/src/hub/exit_codes.dart View 1 1 chunk +0 lines, -38 lines 0 comments Download
D pkg/fletchc/lib/src/hub/hub_main.dart View 1 1 chunk +0 lines, -858 lines 0 comments Download
D pkg/fletchc/lib/src/hub/sentence_parser.dart View 1 1 chunk +0 lines, -465 lines 0 comments Download
D pkg/fletchc/lib/src/hub/session_manager.dart View 1 1 chunk +0 lines, -256 lines 0 comments Download
D pkg/fletchc/lib/src/lazy_field_initializer_codegen.dart View 1 1 chunk +0 lines, -49 lines 0 comments Download
D pkg/fletchc/lib/src/message_examples.dart View 1 1 chunk +0 lines, -375 lines 0 comments Download
D pkg/fletchc/lib/src/messages.dart View 1 1 chunk +0 lines, -366 lines 0 comments Download
D pkg/fletchc/lib/src/model.dart View 1 1 chunk +0 lines, -178 lines 0 comments Download
D pkg/fletchc/lib/src/please_report_crash.dart View 1 1 chunk +0 lines, -73 lines 0 comments Download
D pkg/fletchc/lib/src/shared_command_infrastructure.dart View 1 1 chunk +0 lines, -223 lines 0 comments Download
D pkg/fletchc/lib/src/verbs/README.md View 1 1 chunk +0 lines, -58 lines 0 comments Download
D pkg/fletchc/lib/src/verbs/actions.dart View 1 1 chunk +0 lines, -135 lines 0 comments Download
D pkg/fletchc/lib/src/verbs/attach_verb.dart View 1 1 chunk +0 lines, -52 lines 0 comments Download
D pkg/fletchc/lib/src/verbs/compile_verb.dart View 1 1 chunk +0 lines, -52 lines 0 comments Download
D pkg/fletchc/lib/src/verbs/create_verb.dart View 1 1 chunk +0 lines, -76 lines 0 comments Download
D pkg/fletchc/lib/src/verbs/debug_verb.dart View 1 1 chunk +0 lines, -712 lines 0 comments Download
D pkg/fletchc/lib/src/verbs/documentation.dart View 1 1 chunk +0 lines, -170 lines 0 comments Download
D pkg/fletchc/lib/src/verbs/export_verb.dart View 1 1 chunk +0 lines, -63 lines 0 comments Download
D pkg/fletchc/lib/src/verbs/help_verb.dart View 1 1 chunk +0 lines, -73 lines 0 comments Download
D pkg/fletchc/lib/src/verbs/infrastructure.dart View 1 1 chunk +0 lines, -460 lines 0 comments Download
D pkg/fletchc/lib/src/verbs/options.dart View 1 1 chunk +0 lines, -267 lines 0 comments Download
D pkg/fletchc/lib/src/verbs/quit_verb.dart View 1 1 chunk +0 lines, -17 lines 0 comments Download
D pkg/fletchc/lib/src/verbs/run_verb.dart View 1 1 chunk +0 lines, -78 lines 0 comments Download
D pkg/fletchc/lib/src/verbs/show_verb.dart View 1 1 chunk +0 lines, -90 lines 0 comments Download
D pkg/fletchc/lib/src/verbs/x_download_tools_verb.dart View 1 1 chunk +0 lines, -30 lines 0 comments Download
D pkg/fletchc/lib/src/verbs/x_end_verb.dart View 1 1 chunk +0 lines, -45 lines 0 comments Download
D pkg/fletchc/lib/src/verbs/x_servicec_verb.dart View 1 1 chunk +0 lines, -118 lines 0 comments Download
D pkg/fletchc/lib/src/verbs/x_upgrade_verb.dart View 1 1 chunk +0 lines, -35 lines 0 comments Download
D pkg/fletchc/lib/src/worker/developer.dart View 1 1 chunk +0 lines, -1569 lines 0 comments Download
D pkg/fletchc/lib/src/worker/worker_main.dart View 1 1 chunk +0 lines, -176 lines 0 comments Download
D pkg/fletchc/lib/src/zone_helper.dart View 1 1 chunk +0 lines, -78 lines 0 comments Download
D pkg/fletchc/lib/vm_command_reader.dart View 1 1 chunk +0 lines, -46 lines 0 comments Download
D pkg/fletchc/lib/vm_commands.dart View 1 1 chunk +0 lines, -1535 lines 0 comments Download
D pkg/fletchc/lib/vm_session.dart View 1 1 chunk +0 lines, -868 lines 0 comments Download
D pkg/fletchc/samples/fletchc_driver/target.dart View 1 1 chunk +0 lines, -19 lines 0 comments Download
D pkg/fletchc/tests/compiler_api_test.dart View 1 1 chunk +0 lines, -45 lines 0 comments Download
M pkg/gpio/lib/gpio.dart View 1 1 chunk +1 line, -1 line 0 comments Download
M pkg/http/lib/http.dart View 1 1 chunk +1 line, -1 line 0 comments Download
M pkg/i2c/lib/i2c.dart View 1 1 chunk +2 lines, -2 lines 0 comments Download
M pkg/i2c/lib/src/process_object.dart View 1 1 chunk +1 line, -1 line 0 comments Download
A + pkg/immi_samples/lib/android/src/main/com/google/dartino/immisamples/Drawer.java View 1 1 chunk +1 line, -1 line 0 comments Download
A + pkg/immi_samples/lib/android/src/main/com/google/dartino/immisamples/Menu.java View 1 1 chunk +1 line, -1 line 0 comments Download
A + pkg/immi_samples/lib/android/src/main/com/google/dartino/immisamples/SlidingWindow.java View 1 1 chunk +1 line, -1 line 0 comments Download
D pkg/immi_samples/lib/android/src/main/com/google/fletch/immisamples/Drawer.java View 1 1 chunk +0 lines, -180 lines 0 comments Download
D pkg/immi_samples/lib/android/src/main/com/google/fletch/immisamples/Menu.java View 1 1 chunk +0 lines, -70 lines 0 comments Download
D pkg/immi_samples/lib/android/src/main/com/google/fletch/immisamples/SlidingWindow.java View 1 1 chunk +0 lines, -187 lines 0 comments Download
M pkg/isolate/lib/isolate.dart View 1 1 chunk +1 line, -1 line 0 comments Download
M pkg/isolate/lib/process_runner.dart View 1 1 chunk +1 line, -1 line 0 comments Download
M pkg/lk/lib/framebuffer.dart View 1 1 chunk +1 line, -1 line 0 comments Download
M pkg/mbedtls/lib/mbedtls.dart View 1 2 chunks +5 lines, -5 lines 0 comments Download
M pkg/mdns/bin/mdns-resolve.dart View 1 1 chunk +1 line, -1 line 0 comments Download
M pkg/mqtt/lib/mqtt.dart View 1 3 chunks +6 lines, -6 lines 0 comments Download
M pkg/mqtt/lib/src/mqtt_client.dart View 1 1 chunk +2 lines, -2 lines 0 comments Download
M pkg/mqtt/publish-sample.dart View 1 1 chunk +2 lines, -2 lines 0 comments Download
M pkg/os/lib/os.dart View 1 1 chunk +3 lines, -3 lines 0 comments Download
M pkg/raspberry_pi/lib/raspberry_pi.dart View 1 1 chunk +1 line, -1 line 0 comments Download
M pkg/raspberry_pi/lib/sense_hat.dart View 1 1 chunk +1 line, -1 line 0 comments Download
M pkg/socket/lib/socket.dart View 1 1 chunk +3 lines, -3 lines 0 comments Download
M pkg/stm32f746g_disco/lib/gpio.dart View 1 1 chunk +1 line, -1 line 0 comments Download
M pkg/stm32f746g_disco/lib/lcd.dart View 1 1 chunk +1 line, -1 line 0 comments Download
M pkg/stm32f746g_disco/lib/src/stm32f7_peripherals.dart View 1 1 chunk +1 line, -1 line 0 comments Download
M pkg/stm32f746g_disco/lib/uart.dart View 1 1 chunk +1 line, -1 line 0 comments Download
M platforms/raspberry-pi2/.common.shlib View 1 2 chunks +9 lines, -9 lines 0 comments Download
M platforms/raspberry-pi2/configure-network View 1 2 chunks +3 lines, -3 lines 0 comments Download
M platforms/raspberry-pi2/data/dartino-agent View 1 4 chunks +7 lines, -7 lines 0 comments Download
M platforms/raspberry-pi2/data/dartino-agent.env View 1 2 chunks +3 lines, -3 lines 0 comments Download
A + platforms/raspberry-pi2/data/depend.start.dartino.jessie View 1 2 chunks +5 lines, -5 lines 0 comments Download
A platforms/raspberry-pi2/data/depend.start.dartino.wheezy View 1 1 chunk +15 lines, -0 lines 0 comments Download
D platforms/raspberry-pi2/data/depend.start.fletch.jessie View 1 1 chunk +0 lines, -16 lines 0 comments Download
D platforms/raspberry-pi2/data/depend.start.fletch.wheezy View 1 1 chunk +0 lines, -15 lines 0 comments Download
A + platforms/raspberry-pi2/data/depend.stop.dartino.jessie View 1 1 chunk +3 lines, -3 lines 0 comments Download
A + platforms/raspberry-pi2/data/depend.stop.dartino.wheezy View 1 1 chunk +3 lines, -3 lines 0 comments Download
D platforms/raspberry-pi2/data/depend.stop.fletch.jessie View 1 1 chunk +0 lines, -9 lines 0 comments Download
D platforms/raspberry-pi2/data/depend.stop.fletch.wheezy View 1 1 chunk +0 lines, -9 lines 0 comments Download
M platforms/raspberry-pi2/data/setup-agent.sh View 1 1 chunk +3 lines, -3 lines 0 comments Download
M platforms/raspberry-pi2/flash-sd-card View 1 2 chunks +3 lines, -3 lines 0 comments Download
M platforms/stm/bin/build.sh View 1 4 chunks +8 lines, -8 lines 0 comments Download
A + platforms/stm/disco_dartino/circular_buffer_test.sh View 1 1 chunk +3 lines, -3 lines 0 comments Download
A + platforms/stm/disco_dartino/cmpctmalloc_test.sh View 1 2 chunks +5 lines, -5 lines 0 comments Download
A + platforms/stm/disco_dartino/disco_dartino.gyp View 1 10 chunks +18 lines, -18 lines 0 comments Download
A + platforms/stm/disco_dartino/disco_dartino.ioc View 1 1 chunk +2 lines, -2 lines 0 comments Download
A + platforms/stm/disco_dartino/generated/Inc/mxconstants.h View 1 0 chunks +-1 lines, --1 lines 0 comments Download
A + platforms/stm/disco_dartino/generated/Inc/stm32f7xx_hal_conf.h View 1 0 chunks +-1 lines, --1 lines 0 comments Download
A + platforms/stm/disco_dartino/generated/Inc/stm32f7xx_it.h View 1 0 chunks +-1 lines, --1 lines 0 comments Download
A + platforms/stm/disco_dartino/generated/SW4STM32/configuration/STM32F746NGHx_FLASH.ld View 1 0 chunks +-1 lines, --1 lines 0 comments Download
A + platforms/stm/disco_dartino/generated/Src/mx_init.c View 1 2 chunks +2 lines, -2 lines 0 comments Download
A + platforms/stm/disco_dartino/generated/Src/stm32f7xx_hal_msp.c View 1 0 chunks +-1 lines, --1 lines 0 comments Download
A + platforms/stm/disco_dartino/generated/Src/stm32f7xx_it.c View 1 0 chunks +-1 lines, --1 lines 0 comments Download
A + platforms/stm/disco_dartino/page_allocator_test.sh View 1 1 chunk +3 lines, -3 lines 0 comments Download
A + platforms/stm/disco_dartino/src/FreeRTOSConfig.h View 1 2 chunks +3 lines, -3 lines 0 comments Download
A + platforms/stm/disco_dartino/src/circular_buffer.h View 1 3 chunks +4 lines, -4 lines 0 comments Download
A + platforms/stm/disco_dartino/src/circular_buffer.cc View 1 3 chunks +6 lines, -6 lines 0 comments Download
A + platforms/stm/disco_dartino/src/circular_buffer_test.cc View 1 1 chunk +1 line, -1 line 0 comments Download
A + platforms/stm/disco_dartino/src/cmpctmalloc.h View 1 2 chunks +3 lines, -3 lines 0 comments Download
A + platforms/stm/disco_dartino/src/cmpctmalloc.c View 1 13 chunks +18 lines, -18 lines 0 comments Download
A + platforms/stm/disco_dartino/src/cmpctmalloc_test.cc View 1 2 chunks +3 lines, -3 lines 0 comments Download
A + platforms/stm/disco_dartino/src/dartino_entry.h View 1 1 chunk +4 lines, -8 lines 0 comments Download
A + platforms/stm/disco_dartino/src/dartino_entry.cc View 1 4 chunks +33 lines, -33 lines 0 comments Download
A + platforms/stm/disco_dartino/src/freertos.cc View 1 0 chunks +-1 lines, --1 lines 0 comments Download
A + platforms/stm/disco_dartino/src/globals.h View 1 2 chunks +3 lines, -3 lines 0 comments Download
A + platforms/stm/disco_dartino/src/lcd_log_conf.h View 1 2 chunks +3 lines, -3 lines 0 comments Download
A + platforms/stm/disco_dartino/src/main.cc View 1 2 chunks +4 lines, -4 lines 0 comments Download
A + platforms/stm/disco_dartino/src/page_allocator.h View 1 2 chunks +4 lines, -4 lines 0 comments Download
A + platforms/stm/disco_dartino/src/page_allocator.cc View 1 1 chunk +1 line, -1 line 0 comments Download
A + platforms/stm/disco_dartino/src/page_allocator_test.cc View 1 1 chunk +1 line, -1 line 0 comments Download
A + platforms/stm/disco_dartino/src/syscalls.c View 1 0 chunks +-1 lines, --1 lines 0 comments Download
A + platforms/stm/disco_dartino/src/test.dart View 1 0 chunks +-1 lines, --1 lines 0 comments Download
A + platforms/stm/disco_dartino/src/uart.h View 1 3 chunks +5 lines, -5 lines 0 comments Download
A + platforms/stm/disco_dartino/src/uart.cc View 1 7 chunks +8 lines, -8 lines 0 comments Download
A + platforms/stm/disco_dartino/template/startup_stm32f746xx.s View 1 0 chunks +-1 lines, --1 lines 0 comments Download
A + platforms/stm/disco_dartino/template/system_stm32f7xx.c View 1 0 chunks +-1 lines, --1 lines 0 comments Download
A + platforms/stm/disco_dartino/update.sh View 1 3 chunks +10 lines, -10 lines 0 comments Download
D platforms/stm/disco_fletch/circular_buffer_test.sh View 1 1 chunk +0 lines, -18 lines 0 comments Download
D platforms/stm/disco_fletch/cmpctmalloc_test.sh View 1 1 chunk +0 lines, -36 lines 0 comments Download
D platforms/stm/disco_fletch/disco_fletch.gyp View 1 1 chunk +0 lines, -274 lines 0 comments Download
D platforms/stm/disco_fletch/disco_fletch.ioc View 1 1 chunk +0 lines, -1182 lines 0 comments Download
D platforms/stm/disco_fletch/generated/Inc/mxconstants.h View 1 1 chunk +0 lines, -315 lines 0 comments Download
D platforms/stm/disco_fletch/generated/Inc/stm32f7xx_hal_conf.h View 1 1 chunk +0 lines, -417 lines 0 comments Download
D platforms/stm/disco_fletch/generated/Inc/stm32f7xx_it.h View 1 1 chunk +0 lines, -58 lines 0 comments Download
D platforms/stm/disco_fletch/generated/SW4STM32/configuration/STM32F746NGHx_FLASH.ld View 1 1 chunk +0 lines, -188 lines 0 comments Download
D platforms/stm/disco_fletch/generated/Src/mx_init.c View 1 1 chunk +0 lines, -811 lines 0 comments Download
D platforms/stm/disco_fletch/generated/Src/stm32f7xx_hal_msp.c View 1 1 chunk +0 lines, -997 lines 0 comments Download
D platforms/stm/disco_fletch/generated/Src/stm32f7xx_it.c View 1 1 chunk +0 lines, -104 lines 0 comments Download
D platforms/stm/disco_fletch/page_allocator_test.sh View 1 1 chunk +0 lines, -23 lines 0 comments Download
D platforms/stm/disco_fletch/src/FreeRTOSConfig.h View 1 1 chunk +0 lines, -79 lines 0 comments Download
D platforms/stm/disco_fletch/src/circular_buffer.h View 1 1 chunk +0 lines, -51 lines 0 comments Download
D platforms/stm/disco_fletch/src/circular_buffer.cc View 1 1 chunk +0 lines, -96 lines 0 comments Download
D platforms/stm/disco_fletch/src/circular_buffer_test.cc View 1 1 chunk +0 lines, -109 lines 0 comments Download
D platforms/stm/disco_fletch/src/cmpctmalloc.h View 1 1 chunk +0 lines, -28 lines 0 comments Download
D platforms/stm/disco_fletch/src/cmpctmalloc.c View 1 1 chunk +0 lines, -902 lines 0 comments Download
D platforms/stm/disco_fletch/src/cmpctmalloc_test.cc View 1 1 chunk +0 lines, -55 lines 0 comments Download
D platforms/stm/disco_fletch/src/fletch_entry.h View 1 1 chunk +0 lines, -10 lines 0 comments Download
D platforms/stm/disco_fletch/src/fletch_entry.cc View 1 1 chunk +0 lines, -146 lines 0 comments Download
D platforms/stm/disco_fletch/src/freertos.cc View 1 1 chunk +0 lines, -19 lines 0 comments Download
D platforms/stm/disco_fletch/src/globals.h View 1 1 chunk +0 lines, -21 lines 0 comments Download
D platforms/stm/disco_fletch/src/lcd_log_conf.h View 1 1 chunk +0 lines, -39 lines 0 comments Download
D platforms/stm/disco_fletch/src/main.cc View 1 1 chunk +0 lines, -143 lines 0 comments Download
D platforms/stm/disco_fletch/src/page_allocator.h View 1 1 chunk +0 lines, -71 lines 0 comments Download
D platforms/stm/disco_fletch/src/page_allocator.cc View 1 1 chunk +0 lines, -90 lines 0 comments Download
D platforms/stm/disco_fletch/src/page_allocator_test.cc View 1 1 chunk +0 lines, -106 lines 0 comments Download
D platforms/stm/disco_fletch/src/syscalls.c View 1 1 chunk +0 lines, -124 lines 0 comments Download
D platforms/stm/disco_fletch/src/test.dart View 1 1 chunk +0 lines, -34 lines 0 comments Download
D platforms/stm/disco_fletch/src/uart.h View 1 1 chunk +0 lines, -63 lines 0 comments Download
D platforms/stm/disco_fletch/src/uart.cc View 1 1 chunk +0 lines, -164 lines 0 comments Download
D platforms/stm/disco_fletch/template/startup_stm32f746xx.s View 1 1 chunk +0 lines, -591 lines 0 comments Download
D platforms/stm/disco_fletch/template/system_stm32f7xx.c View 1 1 chunk +0 lines, -434 lines 0 comments Download
D platforms/stm/disco_fletch/update.sh View 1 1 chunk +0 lines, -64 lines 0 comments Download
M platforms/stm/event_handler_test/event_handler_test.gyp View 1 5 chunks +7 lines, -7 lines 0 comments Download
A + platforms/stm/event_handler_test/src/dartino_entry.cc View 1 5 chunks +28 lines, -28 lines 0 comments Download
D platforms/stm/event_handler_test/src/fletch_entry.cc View 1 1 chunk +0 lines, -132 lines 0 comments Download
M platforms/stm/event_handler_test/src/test.dart View 1 1 chunk +3 lines, -3 lines 0 comments Download
M platforms/stm/stm.gyp View 1 1 chunk +2 lines, -2 lines 0 comments Download
M platforms/stm/stm_targets.gypi View 1 5 chunks +17 lines, -17 lines 0 comments Download
M samples/github/android/GithubMock/.gitignore View 1 1 chunk +2 lines, -2 lines 0 comments Download
M samples/github/android/GithubMock/app/build.gradle View 1 1 chunk +1 line, -1 line 0 comments Download
M samples/github/android/GithubMock/app/src/main/AndroidManifest.xml View 1 2 chunks +2 lines, -2 lines 0 comments Download
A + samples/github/android/GithubMock/app/src/main/java/com/google/dartino/githubmock/DartRunner.java View 1 2 chunks +3 lines, -3 lines 0 comments Download
A + samples/github/android/GithubMock/app/src/main/java/com/google/dartino/githubmock/GithubMockServer.java View 1 5 chunks +22 lines, -22 lines 0 comments Download
D samples/github/android/GithubMock/app/src/main/java/com/google/fletch/githubmock/DartRunner.java View 1 1 chunk +0 lines, -20 lines 0 comments Download
D samples/github/android/GithubMock/app/src/main/java/com/google/fletch/githubmock/GithubMockServer.java View 1 1 chunk +0 lines, -149 lines 0 comments Download
M samples/github/android/GithubSample/.gitignore View 1 1 chunk +2 lines, -2 lines 0 comments Download
M samples/github/android/GithubSample/app/build.gradle View 1 1 chunk +1 line, -1 line 0 comments Download
A + samples/github/android/GithubSample/app/src/androidTest/java/com/google/dartino/githubsample/ApplicationTest.java View 1 1 chunk +1 line, -1 line 0 comments Download
D samples/github/android/GithubSample/app/src/androidTest/java/com/google/fletch/githubsample/ApplicationTest.java View 1 1 chunk +0 lines, -13 lines 0 comments Download
M samples/github/android/GithubSample/app/src/main/AndroidManifest.xml View 1 1 chunk +1 line, -1 line 0 comments Download
A + samples/github/android/GithubSample/app/src/main/java/com/google/dartino/githubsample/CenterPresenter.java View 1 2 chunks +2 lines, -2 lines 0 comments Download
A + samples/github/android/GithubSample/app/src/main/java/com/google/dartino/githubsample/CommitCardView.java View 1 1 chunk +1 line, -1 line 0 comments Download
A + samples/github/android/GithubSample/app/src/main/java/com/google/dartino/githubsample/CommitListAdapter.java View 1 2 chunks +2 lines, -2 lines 0 comments Download
A + samples/github/android/GithubSample/app/src/main/java/com/google/dartino/githubsample/DartDebugger.java View 1 2 chunks +3 lines, -3 lines 0 comments Download
A + samples/github/android/GithubSample/app/src/main/java/com/google/dartino/githubsample/DartRunner.java View 1 2 chunks +3 lines, -3 lines 0 comments Download
A + samples/github/android/GithubSample/app/src/main/java/com/google/dartino/githubsample/DetailsViewFragment.java View 1 1 chunk +1 line, -1 line 0 comments Download
A + samples/github/android/GithubSample/app/src/main/java/com/google/dartino/githubsample/GithubMockServer.java View 1 2 chunks +2 lines, -2 lines 0 comments Download
A + samples/github/android/GithubSample/app/src/main/java/com/google/dartino/githubsample/ImageLoader.java View 1 1 chunk +1 line, -1 line 0 comments Download
A + samples/github/android/GithubSample/app/src/main/java/com/google/dartino/githubsample/LeftPresenter.java View 1 1 chunk +3 lines, -3 lines 0 comments Download
A + samples/github/android/GithubSample/app/src/main/java/com/google/dartino/githubsample/LoginActivity.java View 1 1 chunk +1 line, -1 line 0 comments Download
A + samples/github/android/GithubSample/app/src/main/java/com/google/dartino/githubsample/MainActivity.java View 1 2 chunks +2 lines, -2 lines 0 comments Download
A + samples/github/android/GithubSample/app/src/main/java/com/google/dartino/githubsample/MainApplication.java View 1 5 chunks +14 lines, -14 lines 0 comments Download
A + samples/github/android/GithubSample/app/src/main/java/com/google/dartino/githubsample/NavigationDrawerFragment.java View 1 3 chunks +3 lines, -3 lines 0 comments Download
A + samples/github/android/GithubSample/app/src/main/java/com/google/dartino/githubsample/RecyclerViewFragment.java View 1 1 chunk +1 line, -1 line 0 comments Download
D samples/github/android/GithubSample/app/src/main/java/com/google/fletch/githubsample/CenterPresenter.java View 1 1 chunk +0 lines, -173 lines 0 comments Download
D samples/github/android/GithubSample/app/src/main/java/com/google/fletch/githubsample/CommitCardView.java View 1 1 chunk +0 lines, -50 lines 0 comments Download
D samples/github/android/GithubSample/app/src/main/java/com/google/fletch/githubsample/CommitListAdapter.java View 1 1 chunk +0 lines, -101 lines 0 comments Download
D samples/github/android/GithubSample/app/src/main/java/com/google/fletch/githubsample/DartDebugger.java View 1 1 chunk +0 lines, -20 lines 0 comments Download
D samples/github/android/GithubSample/app/src/main/java/com/google/fletch/githubsample/DartRunner.java View 1 1 chunk +0 lines, -20 lines 0 comments Download
D samples/github/android/GithubSample/app/src/main/java/com/google/fletch/githubsample/DetailsViewFragment.java View 1 1 chunk +0 lines, -65 lines 0 comments Download
D samples/github/android/GithubSample/app/src/main/java/com/google/fletch/githubsample/GithubMockServer.java View 1 1 chunk +0 lines, -59 lines 0 comments Download
D samples/github/android/GithubSample/app/src/main/java/com/google/fletch/githubsample/ImageLoader.java View 1 1 chunk +0 lines, -206 lines 0 comments Download
D samples/github/android/GithubSample/app/src/main/java/com/google/fletch/githubsample/LeftPresenter.java View 1 1 chunk +0 lines, -48 lines 0 comments Download
D samples/github/android/GithubSample/app/src/main/java/com/google/fletch/githubsample/LoginActivity.java View 1 1 chunk +0 lines, -157 lines 0 comments Download
D samples/github/android/GithubSample/app/src/main/java/com/google/fletch/githubsample/MainActivity.java View 1 1 chunk +0 lines, -106 lines 0 comments Download
D samples/github/android/GithubSample/app/src/main/java/com/google/fletch/githubsample/MainApplication.java View 1 1 chunk +0 lines, -69 lines 0 comments Download
D samples/github/android/GithubSample/app/src/main/java/com/google/fletch/githubsample/NavigationDrawerFragment.java View 1 1 chunk +0 lines, -219 lines 0 comments Download
D samples/github/android/GithubSample/app/src/main/java/com/google/fletch/githubsample/RecyclerViewFragment.java View 1 1 chunk +0 lines, -37 lines 0 comments Download
M samples/github/android/GithubSample/app/src/main/res/layout/activity_main.xml View 1 1 chunk +1 line, -1 line 0 comments Download
M samples/github/android/GithubSample/app/src/main/res/layout/cards_layout.xml View 1 2 chunks +2 lines, -2 lines 0 comments Download
M samples/github/android/compile.sh View 1 6 chunks +24 lines, -24 lines 0 comments Download
M samples/github/android/compile_mock.sh View 1 5 chunks +17 lines, -17 lines 0 comments Download
M samples/github/bin/github.dart View 1 1 chunk +2 lines, -2 lines 0 comments Download
M samples/github/compile_mock_service.sh View 1 3 chunks +7 lines, -7 lines 0 comments Download
M samples/github/ios/Podfile View 1 1 chunk +1 line, -1 line 0 comments Download
M samples/github/ios/compile.sh View 1 5 chunks +20 lines, -20 lines 0 comments Download
M samples/github/ios/github.xcodeproj/project.pbxproj View 1 4 chunks +4 lines, -4 lines 0 comments Download
M samples/github/ios/github/AppDelegate.mm View 1 3 chunks +15 lines, -15 lines 0 comments Download
M samples/github/ios/github/Base.lproj/Main.storyboard View 1 2 chunks +2 lines, -2 lines 0 comments Download
M samples/github/lib/src/github_mock.dart View 1 1 chunk +2 lines, -2 lines 0 comments Download
A + samples/github/lib/src/github_mock_data/repos/dart-lang/dartino.data View 1 2 chunks +43 lines, -43 lines 0 comments Download
A + samples/github/lib/src/github_mock_data/repos/dart-lang/dartino/commits%3Fpage%3D1.data View 1 56 chunks +211 lines, -211 lines 0 comments Download
A + samples/github/lib/src/github_mock_data/repos/dart-lang/dartino/commits%3Fpage%3D10.data View 1 56 chunks +212 lines, -212 lines 0 comments Download
A + samples/github/lib/src/github_mock_data/repos/dart-lang/dartino/commits%3Fpage%3D11.data View 1 54 chunks +211 lines, -211 lines 0 comments Download
A + samples/github/lib/src/github_mock_data/repos/dart-lang/dartino/commits%3Fpage%3D12.data View 1 56 chunks +211 lines, -211 lines 0 comments Download
A + samples/github/lib/src/github_mock_data/repos/dart-lang/dartino/commits%3Fpage%3D13.data View 1 53 chunks +215 lines, -215 lines 0 comments Download
A + samples/github/lib/src/github_mock_data/repos/dart-lang/dartino/commits%3Fpage%3D14.data View 1 60 chunks +215 lines, -215 lines 0 comments Download
A + samples/github/lib/src/github_mock_data/repos/dart-lang/dartino/commits%3Fpage%3D15.data View 1 59 chunks +213 lines, -213 lines 0 comments Download
A + samples/github/lib/src/github_mock_data/repos/dart-lang/dartino/commits%3Fpage%3D16.data View 1 60 chunks +213 lines, -213 lines 0 comments Download
A + samples/github/lib/src/github_mock_data/repos/dart-lang/dartino/commits%3Fpage%3D17.data View 1 60 chunks +211 lines, -211 lines 0 comments Download
A + samples/github/lib/src/github_mock_data/repos/dart-lang/dartino/commits%3Fpage%3D18.data View 1 59 chunks +211 lines, -211 lines 0 comments Download
A + samples/github/lib/src/github_mock_data/repos/dart-lang/dartino/commits%3Fpage%3D19.data View 1 59 chunks +211 lines, -211 lines 0 comments Download
A + samples/github/lib/src/github_mock_data/repos/dart-lang/dartino/commits%3Fpage%3D2.data View 1 58 chunks +216 lines, -216 lines 0 comments Download
A + samples/github/lib/src/github_mock_data/repos/dart-lang/dartino/commits%3Fpage%3D20.data View 1 58 chunks +213 lines, -213 lines 0 comments Download
A + samples/github/lib/src/github_mock_data/repos/dart-lang/dartino/commits%3Fpage%3D21.data View 1 60 chunks +216 lines, -216 lines 0 comments Download
A + samples/github/lib/src/github_mock_data/repos/dart-lang/dartino/commits%3Fpage%3D22.data View 1 59 chunks +213 lines, -213 lines 0 comments Download
A + samples/github/lib/src/github_mock_data/repos/dart-lang/dartino/commits%3Fpage%3D23.data View 1 3 chunks +12 lines, -12 lines 0 comments Download
A + samples/github/lib/src/github_mock_data/repos/dart-lang/dartino/commits%3Fpage%3D3.data View 1 59 chunks +220 lines, -220 lines 0 comments Download
A + samples/github/lib/src/github_mock_data/repos/dart-lang/dartino/commits%3Fpage%3D4.data View 1 55 chunks +214 lines, -214 lines 0 comments Download
A + samples/github/lib/src/github_mock_data/repos/dart-lang/dartino/commits%3Fpage%3D5.data View 1 59 chunks +210 lines, -210 lines 0 comments Download
A + samples/github/lib/src/github_mock_data/repos/dart-lang/dartino/commits%3Fpage%3D6.data View 1 54 chunks +210 lines, -210 lines 0 comments Download
A + samples/github/lib/src/github_mock_data/repos/dart-lang/dartino/commits%3Fpage%3D7.data View 1 59 chunks +212 lines, -212 lines 0 comments Download
A + samples/github/lib/src/github_mock_data/repos/dart-lang/dartino/commits%3Fpage%3D8.data View 1 55 chunks +214 lines, -214 lines 0 comments Download
A + samples/github/lib/src/github_mock_data/repos/dart-lang/dartino/commits%3Fpage%3D9.data View 1 58 chunks +212 lines, -212 lines 0 comments Download
D samples/github/lib/src/github_mock_data/repos/dart-lang/fletch.data View 1 1 chunk +0 lines, -134 lines 0 comments Download
D samples/github/lib/src/github_mock_data/repos/dart-lang/fletch/commits%3Fpage%3D1.data View 1 1 chunk +0 lines, -1985 lines 0 comments Download
D samples/github/lib/src/github_mock_data/repos/dart-lang/fletch/commits%3Fpage%3D10.data View 1 1 chunk +0 lines, -1985 lines 0 comments Download
D samples/github/lib/src/github_mock_data/repos/dart-lang/fletch/commits%3Fpage%3D11.data View 1 1 chunk +0 lines, -1913 lines 0 comments Download
D samples/github/lib/src/github_mock_data/repos/dart-lang/fletch/commits%3Fpage%3D12.data View 1 1 chunk +0 lines, -1985 lines 0 comments Download
D samples/github/lib/src/github_mock_data/repos/dart-lang/fletch/commits%3Fpage%3D13.data View 1 1 chunk +0 lines, -1877 lines 0 comments Download
D samples/github/lib/src/github_mock_data/repos/dart-lang/fletch/commits%3Fpage%3D14.data View 1 1 chunk +0 lines, -2129 lines 0 comments Download
D samples/github/lib/src/github_mock_data/repos/dart-lang/fletch/commits%3Fpage%3D15.data View 1 1 chunk +0 lines, -2093 lines 0 comments Download
D samples/github/lib/src/github_mock_data/repos/dart-lang/fletch/commits%3Fpage%3D16.data View 1 1 chunk +0 lines, -2129 lines 0 comments Download
D samples/github/lib/src/github_mock_data/repos/dart-lang/fletch/commits%3Fpage%3D17.data View 1 1 chunk +0 lines, -2129 lines 0 comments Download
D samples/github/lib/src/github_mock_data/repos/dart-lang/fletch/commits%3Fpage%3D18.data View 1 1 chunk +0 lines, -2093 lines 0 comments Download
D samples/github/lib/src/github_mock_data/repos/dart-lang/fletch/commits%3Fpage%3D19.data View 1 1 chunk +0 lines, -2093 lines 0 comments Download
D samples/github/lib/src/github_mock_data/repos/dart-lang/fletch/commits%3Fpage%3D2.data View 1 1 chunk +0 lines, -2057 lines 0 comments Download
D samples/github/lib/src/github_mock_data/repos/dart-lang/fletch/commits%3Fpage%3D20.data View 1 1 chunk +0 lines, -2062 lines 0 comments Download
D samples/github/lib/src/github_mock_data/repos/dart-lang/fletch/commits%3Fpage%3D21.data View 1 1 chunk +0 lines, -2139 lines 0 comments Download
D samples/github/lib/src/github_mock_data/repos/dart-lang/fletch/commits%3Fpage%3D22.data View 1 1 chunk +0 lines, -2093 lines 0 comments Download
D samples/github/lib/src/github_mock_data/repos/dart-lang/fletch/commits%3Fpage%3D23.data View 1 1 chunk +0 lines, -165 lines 0 comments Download
D samples/github/lib/src/github_mock_data/repos/dart-lang/fletch/commits%3Fpage%3D3.data View 1 1 chunk +0 lines, -2093 lines 0 comments Download
D samples/github/lib/src/github_mock_data/repos/dart-lang/fletch/commits%3Fpage%3D4.data View 1 1 chunk +0 lines, -1949 lines 0 comments Download
D samples/github/lib/src/github_mock_data/repos/dart-lang/fletch/commits%3Fpage%3D5.data View 1 1 chunk +0 lines, -2093 lines 0 comments Download
D samples/github/lib/src/github_mock_data/repos/dart-lang/fletch/commits%3Fpage%3D6.data View 1 1 chunk +0 lines, -1913 lines 0 comments Download
D samples/github/lib/src/github_mock_data/repos/dart-lang/fletch/commits%3Fpage%3D7.data View 1 1 chunk +0 lines, -2093 lines 0 comments Download
D samples/github/lib/src/github_mock_data/repos/dart-lang/fletch/commits%3Fpage%3D8.data View 1 1 chunk +0 lines, -1954 lines 0 comments Download
D samples/github/lib/src/github_mock_data/repos/dart-lang/fletch/commits%3Fpage%3D9.data View 1 1 chunk +0 lines, -2057 lines 0 comments Download
M samples/github/lib/src/github_services.dart View 1 3 chunks +3 lines, -3 lines 0 comments Download
M samples/github/lib/src/tests/commit_list_test_disabled.dart View 1 1 chunk +1 line, -1 line 0 comments Download
M samples/github/lib/src/tests/github_api_test.dart View 1 2 chunks +4 lines, -4 lines 0 comments Download
M samples/raspberry-pi2/basic/buzzer.dart View 1 1 chunk +1 line, -1 line 0 comments Download
M samples/raspberry-pi2/basic/door-bell.dart View 1 1 chunk +1 line, -1 line 0 comments Download
M samples/raspberry-pi2/basic/knight-rider.dart View 1 1 chunk +2 lines, -2 lines 0 comments Download
M samples/samples.status View 1 2 chunks +5 lines, -3 lines 0 comments Download
M samples/simple_todo/compile.sh View 1 1 chunk +1 line, -1 line 0 comments Download
M samples/simple_todo/java/SimpleTodo.java View 1 2 chunks +7 lines, -7 lines 0 comments Download
M samples/simple_todo/java/SnapshotRunner.java View 1 1 chunk +2 lines, -2 lines 0 comments Download
M samples/simple_todo/java/TodoController.java View 1 1 chunk +1 line, -1 line 0 comments Download
M samples/simple_todo/java/TodoView.java View 1 1 chunk +1 line, -1 line 0 comments Download
M samples/simple_todo/simple_todo_main.cc View 1 3 chunks +6 lines, -6 lines 0 comments Download
M samples/simple_todo/simple_todo_service_tests.dart View 1 3 chunks +4 lines, -4 lines 0 comments Download
M samples/stm32f746g-discovery/knight-rider.dart View 1 3 chunks +5 lines, -5 lines 0 comments Download
M samples/todomvc/android/TodoMVC/.gitignore View 1 1 chunk +2 lines, -2 lines 0 comments Download
M samples/todomvc/android/TodoMVC/app/build.gradle View 1 1 chunk +1 line, -1 line 0 comments Download
A + samples/todomvc/android/TodoMVC/app/src/androidTest/java/com/google/dartino/todomvc/ApplicationTest.java View 1 1 chunk +1 line, -1 line 0 comments Download
D samples/todomvc/android/TodoMVC/app/src/androidTest/java/com/google/fletch/todomvc/ApplicationTest.java View 1 1 chunk +0 lines, -17 lines 0 comments Download
M samples/todomvc/android/TodoMVC/app/src/main/AndroidManifest.xml View 1 1 chunk +1 line, -1 line 0 comments Download
A + samples/todomvc/android/TodoMVC/app/src/main/java/com/google/dartino/todomvc/CreateTodoItem.java View 1 1 chunk +1 line, -1 line 0 comments Download
A + samples/todomvc/android/TodoMVC/app/src/main/java/com/google/dartino/todomvc/DartDebugger.java View 1 2 chunks +3 lines, -3 lines 0 comments Download
A + samples/todomvc/android/TodoMVC/app/src/main/java/com/google/dartino/todomvc/DartRunner.java View 1 2 chunks +3 lines, -3 lines 0 comments Download
A + samples/todomvc/android/TodoMVC/app/src/main/java/com/google/dartino/todomvc/MainActivity.java View 1 2 chunks +5 lines, -5 lines 0 comments Download
A + samples/todomvc/android/TodoMVC/app/src/main/java/com/google/dartino/todomvc/TodoItem.java View 1 1 chunk +2 lines, -2 lines 0 comments Download
A + samples/todomvc/android/TodoMVC/app/src/main/java/com/google/dartino/todomvc/TodoListAdapter.java View 1 1 chunk +1 line, -1 line 0 comments Download
A + samples/todomvc/android/TodoMVC/app/src/main/java/com/google/dartino/todomvc/TodoMVC.java View 1 3 chunks +13 lines, -13 lines 0 comments Download
A + samples/todomvc/android/TodoMVC/app/src/main/java/com/google/dartino/todomvc/TodoMVCPresenter.java View 1 1 chunk +10 lines, -10 lines 0 comments Download
D samples/todomvc/android/TodoMVC/app/src/main/java/com/google/fletch/todomvc/CreateTodoItem.java View 1 1 chunk +0 lines, -52 lines 0 comments Download
D samples/todomvc/android/TodoMVC/app/src/main/java/com/google/fletch/todomvc/DartDebugger.java View 1 1 chunk +0 lines, -20 lines 0 comments Download
D samples/todomvc/android/TodoMVC/app/src/main/java/com/google/fletch/todomvc/DartRunner.java View 1 1 chunk +0 lines, -20 lines 0 comments Download
D samples/todomvc/android/TodoMVC/app/src/main/java/com/google/fletch/todomvc/MainActivity.java View 1 1 chunk +0 lines, -237 lines 0 comments Download
D samples/todomvc/android/TodoMVC/app/src/main/java/com/google/fletch/todomvc/TodoItem.java View 1 1 chunk +0 lines, -60 lines 0 comments Download
D samples/todomvc/android/TodoMVC/app/src/main/java/com/google/fletch/todomvc/TodoListAdapter.java View 1 1 chunk +0 lines, -31 lines 0 comments Download
D samples/todomvc/android/TodoMVC/app/src/main/java/com/google/fletch/todomvc/TodoMVC.java View 1 1 chunk +0 lines, -64 lines 0 comments Download
D samples/todomvc/android/TodoMVC/app/src/main/java/com/google/fletch/todomvc/TodoMVCPresenter.java View 1 1 chunk +0 lines, -73 lines 0 comments Download
M samples/todomvc/android/TodoMVC/app/src/main/res/menu/menu_create_todo_item.xml View 1 1 chunk +1 line, -1 line 0 comments Download
M samples/todomvc/android/compile.sh View 1 2 chunks +16 lines, -16 lines 0 comments Download
M samples/todomvc/dart/todomvc_presenter_model.dart View 1 1 chunk +1 line, -1 line 0 comments Download
M samples/todomvc/ios/TodoMVC.xcodeproj/project.pbxproj View 1 4 chunks +4 lines, -4 lines 0 comments Download
M samples/todomvc/ios/TodoMVC/AppDelegate.mm View 1 3 chunks +13 lines, -13 lines 0 comments Download
M samples/todomvc/todomvc_shared.cc View 1 2 chunks +4 lines, -4 lines 0 comments Download
M src/pkg/mdns/mdns_extension_linux.cc View 1 1 chunk +1 line, -1 line 0 comments Download
M src/pkg/mdns/mdns_extension_macos.cc View 1 1 chunk +1 line, -1 line 0 comments Download
M src/pkg/power_management/power_management_extension_linux.cc View 1 2 chunks +2 lines, -2 lines 0 comments Download
M src/pkg/power_management/power_management_extension_macos.cc View 1 2 chunks +2 lines, -2 lines 0 comments Download
M src/shared/asan_helper.h View 1 1 chunk +5 lines, -4 lines 0 comments Download
M src/shared/assert.h View 1 4 chunks +37 lines, -37 lines 0 comments Download
M src/shared/assert.cc View 1 3 chunks +4 lines, -4 lines 0 comments Download
M src/shared/atomic.h View 1 1 chunk +1 line, -1 line 0 comments Download
M src/shared/atomic_cpp11.h View 1 2 chunks +2 lines, -2 lines 0 comments Download
M src/shared/atomic_gcc_intrinsics.h View 1 2 chunks +2 lines, -2 lines 0 comments Download
M src/shared/bytecodes.h View 1 2 chunks +2 lines, -2 lines 0 comments Download
M src/shared/bytecodes.cc View 1 2 chunks +2 lines, -2 lines 0 comments Download
M src/shared/connection.h View 1 3 chunks +4 lines, -4 lines 0 comments Download
M src/shared/connection.cc View 1 3 chunks +4 lines, -4 lines 0 comments Download
A + src/shared/dartino.h View 1 2 chunks +9 lines, -9 lines 0 comments Download
A + src/shared/dartino.cc View 1 1 chunk +5 lines, -5 lines 0 comments Download
M src/shared/flags.h View 1 3 chunks +3 lines, -3 lines 0 comments Download
M src/shared/flags.cc View 1 2 chunks +2 lines, -2 lines 0 comments Download
M src/shared/flags_test.cc View 1 2 chunks +4 lines, -4 lines 0 comments Download
D src/shared/fletch.h View 1 1 chunk +0 lines, -31 lines 0 comments Download
D src/shared/fletch.cc View 1 1 chunk +0 lines, -13 lines 0 comments Download
M src/shared/globals.h View 1 5 chunks +11 lines, -11 lines 0 comments Download
M src/shared/globals_test.cc View 1 2 chunks +2 lines, -2 lines 0 comments Download
M src/shared/list.h View 1 2 chunks +2 lines, -2 lines 0 comments Download
M src/shared/names.h View 1 3 chunks +3 lines, -3 lines 0 comments Download
M src/shared/native_socket.h View 1 2 chunks +3 lines, -3 lines 0 comments Download
M src/shared/native_socket_linux.cc View 1 2 chunks +4 lines, -4 lines 0 comments Download
M src/shared/native_socket_lk.cc View 1 3 chunks +4 lines, -4 lines 0 comments Download
M src/shared/native_socket_macos.cc View 1 1 chunk +4 lines, -4 lines 0 comments Download
M src/shared/native_socket_posix.cc View 1 3 chunks +4 lines, -4 lines 0 comments Download
M src/shared/native_socket_windows.cc View 1 3 chunks +4 lines, -4 lines 0 comments Download
M src/shared/natives.h View 1 3 chunks +3 lines, -3 lines 0 comments Download
M src/shared/natives_to_json.cc View 1 2 chunks +4 lines, -4 lines 0 comments Download
M src/shared/platform.h View 1 3 chunks +9 lines, -9 lines 0 comments Download
M src/shared/platform_cmsis.h View 1 5 chunks +7 lines, -7 lines 0 comments Download
M src/shared/platform_cmsis.cc View 1 4 chunks +12 lines, -12 lines 0 comments Download
M src/shared/platform_linux.cc View 1 3 chunks +4 lines, -4 lines 0 comments Download
M src/shared/platform_lk.h View 1 3 chunks +4 lines, -4 lines 0 comments Download
M src/shared/platform_lk.cc View 1 3 chunks +4 lines, -4 lines 0 comments Download
M src/shared/platform_macos.cc View 1 3 chunks +4 lines, -4 lines 0 comments Download
M src/shared/platform_posix.h View 1 3 chunks +4 lines, -4 lines 0 comments Download
M src/shared/platform_posix.cc View 1 4 chunks +5 lines, -5 lines 0 comments Download
M src/shared/platform_windows.h View 1 3 chunks +4 lines, -4 lines 0 comments Download
M src/shared/platform_windows.cc View 1 5 chunks +6 lines, -6 lines 0 comments Download
M src/shared/random.h View 1 2 chunks +2 lines, -2 lines 0 comments Download
M src/shared/random_test.cc View 1 2 chunks +2 lines, -2 lines 0 comments Download
M src/shared/selectors.h View 1 2 chunks +2 lines, -2 lines 0 comments Download
M src/shared/shared.gyp View 1 5 chunks +5 lines, -5 lines 0 comments Download
M src/shared/test_case.h View 1 3 chunks +3 lines, -3 lines 0 comments Download
M src/shared/test_case.cc View 1 2 chunks +3 lines, -3 lines 0 comments Download
M src/shared/test_main.cc View 1 1 chunk +6 lines, -6 lines 0 comments Download
M src/shared/utils.h View 1 7 chunks +9 lines, -9 lines 0 comments Download
M src/shared/utils.cc View 1 5 chunks +13 lines, -13 lines 0 comments Download
M src/shared/utils_test.cc View 1 2 chunks +2 lines, -2 lines 0 comments Download
M src/shared/version.h View 1 1 chunk +5 lines, -5 lines 0 comments Download
M src/tools/driver/connection.h View 1 2 chunks +3 lines, -3 lines 0 comments Download
M src/tools/driver/connection.cc View 1 2 chunks +2 lines, -2 lines 0 comments Download
M src/tools/driver/driver.gyp View 1 2 chunks +10 lines, -10 lines 0 comments Download
M src/tools/driver/main.cc View 1 23 chunks +98 lines, -93 lines 0 comments Download
M src/tools/driver/platform.h View 1 2 chunks +2 lines, -2 lines 0 comments Download
M src/tools/driver/platform_linux.cc View 1 3 chunks +4 lines, -4 lines 0 comments Download
M src/tools/driver/platform_macos.cc View 1 3 chunks +4 lines, -4 lines 0 comments Download
M src/tools/flashtool/flashtool.gyp View 1 1 chunk +2 lines, -2 lines 0 comments Download
M src/tools/flashtool/main.cc View 1 2 chunks +4 lines, -4 lines 0 comments Download
M src/vm/assembler.h View 1 1 chunk +2 lines, -2 lines 0 comments Download
M src/vm/assembler_arm.h View 1 2 chunks +2 lines, -2 lines 0 comments Download
M src/vm/assembler_arm.cc View 1 3 chunks +5 lines, -5 lines 0 comments Download
M src/vm/assembler_arm64_linux.cc View 1 1 chunk +4 lines, -4 lines 0 comments Download
M src/vm/assembler_arm64_macos.cc View 1 1 chunk +4 lines, -4 lines 0 comments Download
M src/vm/assembler_arm_linux.cc View 1 2 chunks +6 lines, -6 lines 0 comments Download
M src/vm/assembler_arm_macos.cc View 1 2 chunks +5 lines, -5 lines 0 comments Download
M src/vm/assembler_arm_thumb_linux.cc View 1 2 chunks +6 lines, -6 lines 0 comments Download
M src/vm/assembler_x64.h View 1 2 chunks +2 lines, -2 lines 0 comments Download
M src/vm/assembler_x64.cc View 1 2 chunks +4 lines, -4 lines 0 comments Download
M src/vm/assembler_x64_linux.cc View 1 2 chunks +4 lines, -4 lines 0 comments Download
M src/vm/assembler_x64_macos.cc View 1 2 chunks +4 lines, -4 lines 0 comments Download
M src/vm/assembler_x86.h View 1 2 chunks +2 lines, -2 lines 0 comments Download
M src/vm/assembler_x86.cc View 1 2 chunks +4 lines, -4 lines 0 comments Download
M src/vm/assembler_x86_linux.cc View 1 2 chunks +4 lines, -4 lines 0 comments Download
M src/vm/assembler_x86_macos.cc View 1 2 chunks +5 lines, -5 lines 0 comments Download
M src/vm/assembler_x86_win.cc View 1 2 chunks +4 lines, -4 lines 0 comments Download
A + src/vm/dartino.cc View 1 4 chunks +5 lines, -5 lines 0 comments Download
A + src/vm/dartino_api_impl.h View 1 1 chunk +4 lines, -13 lines 0 comments Download
A + src/vm/dartino_api_impl.cc View 1 6 chunks +60 lines, -59 lines 0 comments Download
A + src/vm/dartino_relocation_api_impl.h View 1 1 chunk +4 lines, -13 lines 0 comments Download
A src/vm/dartino_relocation_api_impl.cc View 1 1 chunk +26 lines, -0 lines 0 comments Download
M src/vm/debug_info.h View 1 2 chunks +5 lines, -5 lines 0 comments Download
M src/vm/debug_info.cc View 1 3 chunks +4 lines, -4 lines 0 comments Download
M src/vm/debug_info_no_live_coding.h View 1 2 chunks +2 lines, -2 lines 0 comments Download
M src/vm/event_handler.h View 1 2 chunks +2 lines, -2 lines 0 comments Download
M src/vm/event_handler.cc View 1 2 chunks +2 lines, -2 lines 0 comments Download
M src/vm/event_handler_cmsis.cc View 1 4 chunks +5 lines, -5 lines 0 comments Download
M src/vm/event_handler_linux.cc View 1 3 chunks +4 lines, -4 lines 0 comments Download
M src/vm/event_handler_lk.cc View 1 3 chunks +7 lines, -7 lines 0 comments Download
M src/vm/event_handler_macos.cc View 1 3 chunks +4 lines, -4 lines 0 comments Download
M src/vm/event_handler_posix.cc View 1 2 chunks +4 lines, -4 lines 0 comments Download
M src/vm/event_handler_windows.cc View 1 3 chunks +4 lines, -4 lines 0 comments Download
M src/vm/ffi.h View 1 3 chunks +4 lines, -4 lines 0 comments Download
M src/vm/ffi.cc View 1 2 chunks +2 lines, -2 lines 0 comments Download
M src/vm/ffi_disabled.cc View 1 2 chunks +5 lines, -5 lines 0 comments Download
M src/vm/ffi_linux.cc View 1 1 chunk +6 lines, -6 lines 0 comments Download
M src/vm/ffi_macos.cc View 1 1 chunk +6 lines, -6 lines 0 comments Download
M src/vm/ffi_posix.cc View 1 4 chunks +7 lines, -7 lines 0 comments Download
M src/vm/ffi_static.cc View 1 4 chunks +8 lines, -8 lines 0 comments Download
M src/vm/ffi_test_library.c View 1 1 chunk +1 line, -1 line 0 comments Download
M src/vm/ffi_windows.cc View 1 4 chunks +7 lines, -7 lines 0 comments Download
D src/vm/fletch.cc View 1 1 chunk +0 lines, -41 lines 0 comments Download
D src/vm/fletch_api_impl.h View 1 1 chunk +0 lines, -10 lines 0 comments Download
D src/vm/fletch_api_impl.cc View 1 1 chunk +0 lines, -202 lines 0 comments Download
D src/vm/fletch_relocation_api_impl.h View 1 1 chunk +0 lines, -10 lines 0 comments Download
D src/vm/fletch_relocation_api_impl.cc View 1 1 chunk +0 lines, -22 lines 0 comments Download
M src/vm/frame.h View 1 2 chunks +2 lines, -2 lines 0 comments Download
M src/vm/gc_thread.h View 1 2 chunks +2 lines, -2 lines 0 comments Download
M src/vm/gc_thread.cc View 1 2 chunks +2 lines, -2 lines 0 comments Download
M src/vm/generator.h View 1 2 chunks +2 lines, -2 lines 0 comments Download
M src/vm/generator.cc View 1 2 chunks +4 lines, -4 lines 0 comments Download
M src/vm/hash_map.h View 1 2 chunks +2 lines, -2 lines 0 comments Download
M src/vm/hash_set.h View 1 2 chunks +2 lines, -2 lines 0 comments Download
M src/vm/hash_table.h View 1 2 chunks +2 lines, -2 lines 0 comments Download
M src/vm/hash_table_test.cc View 1 2 chunks +2 lines, -2 lines 0 comments Download
M src/vm/heap.h View 1 3 chunks +3 lines, -3 lines 0 comments Download
M src/vm/heap.cc View 1 4 chunks +5 lines, -5 lines 0 comments Download
M src/vm/heap_validator.h View 1 2 chunks +2 lines, -2 lines 0 comments Download
M src/vm/heap_validator.cc View 1 2 chunks +2 lines, -2 lines 0 comments Download
M src/vm/interpreter.h View 1 2 chunks +2 lines, -2 lines 0 comments Download
M src/vm/interpreter.cc View 1 4 chunks +8 lines, -8 lines 0 comments Download
M src/vm/interpreter_arm.cc View 1 9 chunks +10 lines, -10 lines 0 comments Download
M src/vm/interpreter_x64.cc View 1 3 chunks +4 lines, -4 lines 0 comments Download
M src/vm/interpreter_x86.cc View 1 3 chunks +4 lines, -4 lines 0 comments Download
M src/vm/intrinsics.h View 1 2 chunks +2 lines, -2 lines 0 comments Download
M src/vm/intrinsics.cc View 1 2 chunks +2 lines, -2 lines 0 comments Download
M src/vm/links.h View 1 2 chunks +2 lines, -2 lines 0 comments Download
M src/vm/links.cc View 1 2 chunks +2 lines, -2 lines 0 comments Download
M src/vm/log_print_interceptor.h View 1 2 chunks +2 lines, -2 lines 0 comments Download
M src/vm/log_print_interceptor.cc View 1 1 chunk +4 lines, -4 lines 0 comments Download
M src/vm/lookup_cache.h View 1 2 chunks +2 lines, -2 lines 0 comments Download
M src/vm/lookup_cache.cc View 1 2 chunks +2 lines, -2 lines 0 comments Download
M src/vm/mailbox.h View 1 2 chunks +2 lines, -2 lines 0 comments Download
M src/vm/main.cc View 1 7 chunks +18 lines, -17 lines 0 comments Download
M src/vm/main_simple.cc View 1 2 chunks +14 lines, -14 lines 0 comments Download
M src/vm/mark_sweep.h View 1 2 chunks +2 lines, -2 lines 0 comments Download
M src/vm/message_mailbox.h View 1 2 chunks +2 lines, -2 lines 0 comments Download
M src/vm/message_mailbox.cc View 1 2 chunks +2 lines, -2 lines 0 comments Download
M src/vm/multi_hashset.h View 1 2 chunks +2 lines, -2 lines 0 comments Download
M src/vm/multiprogram_test.cc View 1 7 chunks +14 lines, -14 lines 0 comments Download
M src/vm/native_interpreter.h View 1 2 chunks +2 lines, -2 lines 0 comments Download
M src/vm/native_interpreter.cc View 1 2 chunks +2 lines, -2 lines 0 comments Download
M src/vm/native_process_disabled.cc View 1 2 chunks +4 lines, -4 lines 0 comments Download
M src/vm/native_process_posix.cc View 1 3 chunks +6 lines, -6 lines 0 comments Download
M src/vm/native_process_windows.cc View 1 2 chunks +6 lines, -6 lines 0 comments Download
M src/vm/natives.h View 1 2 chunks +2 lines, -2 lines 0 comments Download
M src/vm/natives.cc View 1 17 chunks +20 lines, -20 lines 0 comments Download
M src/vm/natives_cmsis.cc View 1 2 chunks +4 lines, -4 lines 0 comments Download
M src/vm/natives_lk.cc View 1 2 chunks +4 lines, -4 lines 0 comments Download
M src/vm/natives_posix.cc View 1 3 chunks +4 lines, -4 lines 0 comments Download
M src/vm/natives_windows.cc View 1 3 chunks +4 lines, -4 lines 0 comments Download
M src/vm/object.h View 1 5 chunks +9 lines, -9 lines 0 comments Download
M src/vm/object.cc View 1 2 chunks +2 lines, -2 lines 0 comments Download
M src/vm/object_list.h View 1 2 chunks +2 lines, -2 lines 0 comments Download
M src/vm/object_list.cc View 1 2 chunks +2 lines, -2 lines 0 comments Download
M src/vm/object_map.h View 1 2 chunks +2 lines, -2 lines 0 comments Download
M src/vm/object_map.cc View 1 2 chunks +2 lines, -2 lines 0 comments Download
M src/vm/object_map_test.cc View 1 2 chunks +2 lines, -2 lines 0 comments Download
M src/vm/object_memory.h View 1 4 chunks +4 lines, -4 lines 0 comments Download
M src/vm/object_memory.cc View 1 10 chunks +13 lines, -13 lines 0 comments Download
M src/vm/object_memory_copying.cc View 1 2 chunks +2 lines, -2 lines 0 comments Download
M src/vm/object_memory_mark_sweep.cc View 1 2 chunks +2 lines, -2 lines 0 comments Download
M src/vm/object_memory_test.cc View 1 2 chunks +2 lines, -2 lines 0 comments Download
M src/vm/object_test.cc View 1 2 chunks +2 lines, -2 lines 0 comments Download
M src/vm/pair.h View 1 2 chunks +2 lines, -2 lines 0 comments Download
M src/vm/platform_test.cc View 1 2 chunks +2 lines, -2 lines 0 comments Download
M src/vm/port.h View 1 2 chunks +2 lines, -2 lines 0 comments Download
M src/vm/port.cc View 1 3 chunks +3 lines, -3 lines 0 comments Download
M src/vm/preempter.h View 1 2 chunks +2 lines, -2 lines 0 comments Download
M src/vm/preempter.cc View 1 2 chunks +2 lines, -2 lines 0 comments Download
M src/vm/priority_heap.h View 1 2 chunks +2 lines, -2 lines 0 comments Download
M src/vm/priority_heap_test.cc View 1 2 chunks +2 lines, -2 lines 0 comments Download
M src/vm/process.h View 1 3 chunks +3 lines, -3 lines 0 comments Download
M src/vm/process.cc View 1 3 chunks +3 lines, -3 lines 0 comments Download
M src/vm/process_handle.h View 1 2 chunks +2 lines, -2 lines 0 comments Download
M src/vm/process_handle.cc View 1 2 chunks +2 lines, -2 lines 0 comments Download
M src/vm/process_queue.h View 1 2 chunks +2 lines, -2 lines 0 comments Download
M src/vm/program.h View 1 3 chunks +3 lines, -3 lines 0 comments Download
M src/vm/program.cc View 1 3 chunks +3 lines, -3 lines 0 comments Download
M src/vm/program_folder.h View 1 2 chunks +4 lines, -4 lines 0 comments Download
M src/vm/program_folder.cc View 1 3 chunks +4 lines, -4 lines 0 comments Download
M src/vm/program_info_block.h View 1 2 chunks +2 lines, -2 lines 0 comments Download
M src/vm/program_info_block.cc View 1 2 chunks +2 lines, -2 lines 0 comments Download
M src/vm/program_relocator.h View 1 2 chunks +2 lines, -2 lines 0 comments Download
M src/vm/program_relocator.cc View 1 2 chunks +2 lines, -2 lines 0 comments Download
M src/vm/refcounted.h View 1 2 chunks +2 lines, -2 lines 0 comments Download
M src/vm/remembered_set.h View 1 2 chunks +2 lines, -2 lines 0 comments Download
M src/vm/scheduler.h View 1 3 chunks +3 lines, -3 lines 0 comments Download
M src/vm/scheduler.cc View 1 2 chunks +2 lines, -2 lines 0 comments Download
M src/vm/selector_row.h View 1 3 chunks +4 lines, -4 lines 0 comments Download
M src/vm/selector_row.cc View 1 3 chunks +4 lines, -4 lines 0 comments Download
M src/vm/service_api_impl.h View 1 3 chunks +3 lines, -3 lines 0 comments Download
M src/vm/service_api_impl.cc View 1 4 chunks +10 lines, -10 lines 0 comments Download
M src/vm/session.h View 1 3 chunks +5 lines, -5 lines 0 comments Download
M src/vm/session.cc View 1 5 chunks +9 lines, -9 lines 0 comments Download
M src/vm/session_no_live_coding.h View 1 2 chunks +2 lines, -2 lines 0 comments Download
M src/vm/signal.h View 1 2 chunks +3 lines, -3 lines 0 comments Download
M src/vm/snapshot.h View 1 2 chunks +2 lines, -2 lines 0 comments Download
M src/vm/snapshot.cc View 1 5 chunks +8 lines, -8 lines 0 comments Download
M src/vm/sort.h View 1 2 chunks +2 lines, -2 lines 0 comments Download
M src/vm/sort.cc View 1 2 chunks +2 lines, -2 lines 0 comments Download
M src/vm/spinlock.h View 1 2 chunks +2 lines, -2 lines 0 comments Download
M src/vm/thread.h View 1 2 chunks +6 lines, -6 lines 0 comments Download
M src/vm/thread_cmsis.h View 1 2 chunks +2 lines, -2 lines 0 comments Download
M src/vm/thread_cmsis.cc View 1 4 chunks +12 lines, -11 lines 0 comments Download
M src/vm/thread_lk.h View 1 2 chunks +2 lines, -2 lines 0 comments Download
M src/vm/thread_lk.cc View 1 3 chunks +4 lines, -4 lines 0 comments Download
M src/vm/thread_pool.h View 1 2 chunks +2 lines, -2 lines 0 comments Download
M src/vm/thread_pool.cc View 1 2 chunks +2 lines, -2 lines 0 comments Download
M src/vm/thread_posix.h View 1 2 chunks +2 lines, -2 lines 0 comments Download
M src/vm/thread_posix.cc View 1 3 chunks +4 lines, -4 lines 0 comments Download
M src/vm/thread_windows.h View 1 2 chunks +2 lines, -2 lines 0 comments Download
M src/vm/thread_windows.cc View 1 3 chunks +6 lines, -6 lines 0 comments Download
M src/vm/tick_queue.h View 1 2 chunks +2 lines, -2 lines 0 comments Download
M src/vm/tick_sampler.h View 1 2 chunks +2 lines, -2 lines 0 comments Download
M src/vm/tick_sampler_other.cc View 1 1 chunk +4 lines, -4 lines 0 comments Download
M src/vm/tick_sampler_posix.cc View 1 6 chunks +16 lines, -16 lines 0 comments Download
M src/vm/unicode.h View 1 2 chunks +2 lines, -2 lines 0 comments Download
M src/vm/unicode.cc View 1 2 chunks +2 lines, -2 lines 0 comments Download
M src/vm/vector.h View 1 3 chunks +6 lines, -6 lines 0 comments Download
M src/vm/vector.cc View 1 2 chunks +2 lines, -2 lines 0 comments Download
M src/vm/vector_test.cc View 1 2 chunks +2 lines, -2 lines 0 comments Download
M src/vm/vm.gyp View 1 11 chunks +23 lines, -23 lines 0 comments Download
M src/vm/void_hash_table.h View 1 2 chunks +2 lines, -2 lines 0 comments Download
M src/vm/void_hash_table.cc View 1 2 chunks +2 lines, -2 lines 0 comments Download
M src/vm/weak_pointer.h View 1 2 chunks +2 lines, -2 lines 0 comments Download
M src/vm/weak_pointer.cc View 1 2 chunks +2 lines, -2 lines 0 comments Download
M tests/agent_tests/agent_tests.dart View 1 10 chunks +26 lines, -26 lines 0 comments Download
M tests/cc_tests/README.md View 1 1 chunk +1 line, -1 line 0 comments Download
M tests/cc_tests/shared_run_tests_test.dart View 1 1 chunk +1 line, -1 line 0 comments Download
M tests/cc_tests/vm_run_tests_test.dart View 1 1 chunk +1 line, -1 line 0 comments Download
M tests/cli_tests/cli_tests.dart View 1 3 chunks +7 lines, -7 lines 0 comments Download
M tests/cli_tests/debugger_list_processes.dart View 1 1 chunk +1 line, -1 line 0 comments Download
M tests/cli_tests/interactive_debugger_tests.dart View 1 3 chunks +3 lines, -3 lines 0 comments Download
M tests/corelib.status View 1 3 chunks +8 lines, -8 lines 0 comments Download
M tests/coroutine/coroutine.status View 1 1 chunk +1 line, -1 line 0 comments Download
M tests/coroutine/fib_spawn_program_gc_gc_on_delete_test.dart View 1 1 chunk +1 line, -1 line 0 comments Download
M tests/coroutine/fib_spawn_program_gc_test.dart View 1 1 chunk +1 line, -1 line 0 comments Download
M tests/coroutine/fib_test.dart View 1 1 chunk +1 line, -1 line 0 comments Download
M tests/coroutine/fiber_join_test.dart View 1 1 chunk +1 line, -1 line 0 comments Download
M tests/coroutine/fiber_yield_channel_receive_test.dart View 1 1 chunk +1 line, -1 line 0 comments Download
M tests/coroutine/fiber_yield_test.dart View 1 1 chunk +1 line, -1 line 0 comments Download
M tests/coroutine/stack_overflow_test.dart View 1 1 chunk +1 line, -1 line 0 comments Download
M tests/coroutine/throw_test.dart View 1 1 chunk +1 line, -1 line 0 comments Download
M tests/coroutine/yield_test.dart View 1 1 chunk +1 line, -1 line 0 comments Download
A + tests/dartino_compiler/driver/mock_vm.dart View 1 4 chunks +5 lines, -5 lines 0 comments Download
A + tests/dartino_compiler/driver/test_control_stream.dart View 1 1 chunk +2 lines, -2 lines 0 comments Download
A + tests/dartino_compiler/driver/test_vm_connection.dart View 1 2 chunks +6 lines, -6 lines 0 comments Download
A + tests/dartino_compiler/incremental/common.dart View 1 1 chunk +1 line, -1 line 0 comments Download
A + tests/dartino_compiler/incremental/compiler_test_case.dart View 1 2 chunks +3 lines, -3 lines 0 comments Download
A + tests/dartino_compiler/incremental/experimental_mode.dart View 1 2 chunks +3 lines, -3 lines 0 comments Download
A + tests/dartino_compiler/incremental/feature_test.dart View 1 19 chunks +53 lines, -53 lines 0 comments Download
A + tests/dartino_compiler/incremental/production_mode.dart View 1 2 chunks +3 lines, -3 lines 0 comments Download
A + tests/dartino_compiler/incremental/program_result.dart View 1 1 chunk +1 line, -1 line 0 comments Download
A + tests/dartino_compiler/incremental/source_update.dart View 1 1 chunk +1 line, -1 line 0 comments Download
A + tests/dartino_compiler/incremental/tests_with_expectations.dart View 1 2 chunks +2 lines, -2 lines 0 comments Download
A + tests/dartino_compiler/run.dart View 1 8 chunks +23 lines, -23 lines 0 comments Download
A + tests/dartino_compiler/serialize_settings_tests.dart View 1 2 chunks +4 lines, -4 lines 0 comments Download
A + tests/dartino_compiler/test_incremental_debug_info.dart View 1 0 chunks +-1 lines, --1 lines 0 comments Download
A + tests/dartino_tests/all_tests.dart View 1 3 chunks +7 lines, -7 lines 0 comments Download
A + tests/dartino_tests/dartino_test_suite.dart View 1 4 chunks +8 lines, -8 lines 0 comments Download
A + tests/dartino_tests/dartino_tests.status View 1 2 chunks +2 lines, -2 lines 0 comments Download
A + tests/dartino_tests/file_with_compile_time_error.dart View 1 1 chunk +1 line, -1 line 0 comments Download
A + tests/dartino_tests/message_tests.dart View 1 2 chunks +13 lines, -13 lines 0 comments Download
A + tests/dartino_tests/messages.dart View 1 2 chunks +4 lines, -4 lines 0 comments Download
A + tests/dartino_tests/multiprogram_tests.dart View 1 2 chunks +2 lines, -2 lines 0 comments Download
A + tests/dartino_tests/self_tests.dart View 1 3 chunks +4 lines, -4 lines 0 comments Download
A + tests/dartino_tests/sentence_tests.dart View 1 1 chunk +1 line, -1 line 0 comments Download
A + tests/dartino_tests/snapshot_stacktrace_tests.dart View 1 3 chunks +4 lines, -4 lines 0 comments Download
A + tests/dartino_tests/test_suite_consumer.dart View 1 2 chunks +5 lines, -5 lines 0 comments Download
A + tests/dartino_tests/utils.dart View 1 1 chunk +1 line, -1 line 0 comments Download
A + tests/dartino_tests/verb_tests.dart View 1 2 chunks +4 lines, -4 lines 0 comments Download
A + tests/dartino_tests/zone_helper_tests.dart View 1 2 chunks +4 lines, -4 lines 0 comments Download
M tests/debugger/async_expected.txt View 1 1 chunk +2 lines, -2 lines 0 comments Download
M tests/debugger/async_test.dart View 1 1 chunk +1 line, -1 line 0 comments Download
M tests/debugger/break_after_spawn_test.dart View 1 1 chunk +2 lines, -2 lines 0 comments Download
M tests/debugger/break_line_pattern_test.dart View 1 1 chunk +1 line, -1 line 0 comments Download
M tests/debugger/debugger_tests.dart View 1 4 chunks +7 lines, -7 lines 0 comments Download
M tests/debugger/empty_column_test.dart View 1 1 chunk +1 line, -1 line 0 comments Download
M tests/debugger/fibers_expected.txt View 1 3 chunks +3 lines, -3 lines 0 comments Download
M tests/debugger/fibers_test.dart View 1 1 chunk +2 lines, -2 lines 0 comments Download
M tests/debugger/find_file_test.dart View 1 1 chunk +1 line, -1 line 0 comments Download
M tests/debugger/finish_test.dart View 1 1 chunk +1 line, -1 line 0 comments Download
M tests/debugger/frame_restart_test.dart View 1 1 chunk +1 line, -1 line 0 comments Download
M tests/debugger/implicit_rethrow_expected.txt View 1 1 chunk +1 line, -1 line 0 comments Download
M tests/debugger/implicit_rethrow_test.dart View 1 1 chunk +1 line, -1 line 0 comments Download
M tests/debugger/list_breakpoints_test.dart View 1 1 chunk +1 line, -1 line 0 comments Download
M tests/debugger/list_processes_test.dart View 1 1 chunk +2 lines, -2 lines 0 comments Download
M tests/debugger/no_visible_frames_expected.txt View 1 1 chunk +1 line, -1 line 0 comments Download
M tests/debugger/no_visible_frames_test.dart View 1 1 chunk +1 line, -1 line 0 comments Download
M tests/debugger/nonempty_column_test.dart View 1 1 chunk +1 line, -1 line 0 comments Download
M tests/debugger/patched_constructor_test.dart View 1 1 chunk +1 line, -1 line 0 comments Download
M tests/debugger/print_function_locals_test.dart View 1 1 chunk +2 lines, -2 lines 0 comments Download
M tests/debugger/print_local_structure_test.dart View 1 1 chunk +1 line, -1 line 0 comments Download
M tests/debugger/print_local_test.dart View 1 1 chunk +1 line, -1 line 0 comments Download
M tests/debugger/quit_before_run_test.dart View 1 1 chunk +1 line, -1 line 0 comments Download
M tests/debugger/restart_compile_time_error_expected.txt View 1 1 chunk +1 line, -1 line 0 comments Download
M tests/debugger/restart_compile_time_error_test.dart View 1 1 chunk +1 line, -1 line 0 comments Download
M tests/debugger/restart_uncaught_exception_expected.txt View 1 1 chunk +1 line, -1 line 0 comments Download
M tests/debugger/restart_uncaught_exception_test.dart View 1 1 chunk +1 line, -1 line 0 comments Download
M tests/debugger/rethrow_expected.txt View 1 1 chunk +1 line, -1 line 0 comments Download
M tests/debugger/rethrow_test.dart View 1 1 chunk +1 line, -1 line 0 comments Download
M tests/debugger/step_over_recursive_test.dart View 1 1 chunk +1 line, -1 line 0 comments Download
M tests/debugger/step_over_test.dart View 1 1 chunk +1 line, -1 line 0 comments Download
M tests/debugger/uncaught_exceptions_test.dart View 1 1 chunk +1 line, -1 line 0 comments Download
M tests/debugger/unsupported_hint_expected.txt View 1 1 chunk +2 lines, -2 lines 0 comments Download
M tests/debugger/unsupported_hint_test.dart View 1 1 chunk +1 line, -1 line 0 comments Download
M tests/ffi/ffi_test.dart View 1 1 chunk +2 lines, -2 lines 0 comments Download
M tests/ffi/ffi_timeofday_test.dart View 1 1 chunk +1 line, -1 line 0 comments Download
M tests/ffi/regress_252_test.dart View 1 1 chunk +1 line, -1 line 0 comments Download
M tests/ffi/regress_issue_64_test.dart View 1 1 chunk +1 line, -1 line 0 comments Download
D tests/fletch_tests/all_tests.dart View 1 1 chunk +0 lines, -157 lines 0 comments Download
D tests/fletch_tests/file_with_compile_time_error.dart View 1 1 chunk +0 lines, -21 lines 0 comments Download
D tests/fletch_tests/fletch_test_suite.dart View 1 1 chunk +0 lines, -316 lines 0 comments Download
D tests/fletch_tests/fletch_tests.status View 1 1 chunk +0 lines, -129 lines 0 comments Download
D tests/fletch_tests/message_tests.dart View 1 1 chunk +0 lines, -296 lines 0 comments Download
D tests/fletch_tests/messages.dart View 1 1 chunk +0 lines, -234 lines 0 comments Download
D tests/fletch_tests/multiprogram_tests.dart View 1 1 chunk +0 lines, -147 lines 0 comments Download
D tests/fletch_tests/self_tests.dart View 1 1 chunk +0 lines, -56 lines 0 comments Download
D tests/fletch_tests/sentence_tests.dart View 1 1 chunk +0 lines, -110 lines 0 comments Download
D tests/fletch_tests/snapshot_stacktrace_tests.dart View 1 1 chunk +0 lines, -128 lines 0 comments Download
D tests/fletch_tests/test_suite_consumer.dart View 1 1 chunk +0 lines, -39 lines 0 comments Download
D tests/fletch_tests/utils.dart View 1 1 chunk +0 lines, -21 lines 0 comments Download
D tests/fletch_tests/verb_tests.dart View 1 1 chunk +0 lines, -29 lines 0 comments Download
D tests/fletch_tests/zone_helper_tests.dart View 1 1 chunk +0 lines, -194 lines 0 comments Download
D tests/fletchc/driver/mock_vm.dart View 1 1 chunk +0 lines, -180 lines 0 comments Download
D tests/fletchc/driver/test_control_stream.dart View 1 1 chunk +0 lines, -66 lines 0 comments Download
D tests/fletchc/driver/test_vm_connection.dart View 1 1 chunk +0 lines, -84 lines 0 comments Download
D tests/fletchc/incremental/common.dart View 1 1 chunk +0 lines, -94 lines 0 comments Download
D tests/fletchc/incremental/compiler_test_case.dart View 1 1 chunk +0 lines, -48 lines 0 comments Download
D tests/fletchc/incremental/experimental_mode.dart View 1 1 chunk +0 lines, -30 lines 0 comments Download
D tests/fletchc/incremental/feature_test.dart View 1 1 chunk +0 lines, -713 lines 0 comments Download
D tests/fletchc/incremental/production_mode.dart View 1 1 chunk +0 lines, -30 lines 0 comments Download
D tests/fletchc/incremental/program_result.dart View 1 1 chunk +0 lines, -250 lines 0 comments Download
D tests/fletchc/incremental/source_update.dart View 1 1 chunk +0 lines, -154 lines 0 comments Download
D tests/fletchc/incremental/tests_with_expectations.dart View 1 1 chunk +0 lines, -2686 lines 0 comments Download
D tests/fletchc/run.dart View 1 1 chunk +0 lines, -164 lines 0 comments Download
D tests/fletchc/serialize_settings_tests.dart View 1 1 chunk +0 lines, -46 lines 0 comments Download
D tests/fletchc/test_incremental_debug_info.dart View 1 1 chunk +0 lines, -10 lines 0 comments Download
M tests/golem/golem_tests.dart View 1 4 chunks +5 lines, -5 lines 0 comments Download
M tests/isolate/isolate_spawn_test.dart View 1 1 chunk +1 line, -1 line 0 comments Download
M tests/isolate/process_runner_test.dart View 1 1 chunk +1 line, -1 line 0 comments Download
M tests/language.status View 1 5 chunks +6 lines, -6 lines 0 comments Download
M tests/lib/lib.status View 1 2 chunks +2 lines, -2 lines 0 comments Download
M tests/mbedtls_tests/ssl_client.dart View 1 1 chunk +2 lines, -2 lines 0 comments Download
M tests/mbedtls_tests/ssl_tests.dart View 1 3 chunks +6 lines, -6 lines 0 comments Download
M tests/multiprogram_tests/unhandled_signal.dart View 1 1 chunk +1 line, -1 line 0 comments Download
M tests/os/native_process_test.dart View 1 1 chunk +2 lines, -2 lines 0 comments Download
M tests/os/sleep_test.dart View 1 1 chunk +1 line, -1 line 0 comments Download
A + tests/pkg/dartino_agent/messages_test.dart View 1 3 chunks +12 lines, -12 lines 0 comments Download
M tests/pkg/ffi/ffi_test.dart View 1 1 chunk +1 line, -1 line 0 comments Download
M tests/pkg/file/file_test.dart View 1 1 chunk +1 line, -1 line 0 comments Download
D tests/pkg/fletch_agent/messages_test.dart View 1 1 chunk +0 lines, -137 lines 0 comments Download
M tests/pkg/http/http_test.dart View 1 1 chunk +1 line, -1 line 0 comments Download
M tests/pkg/pkg.status View 1 1 chunk +2 lines, -2 lines 0 comments Download
M tests/service_tests/conformance/conformance_test_shared.cc View 1 2 chunks +4 lines, -4 lines 0 comments Download
M tests/service_tests/conformance/java/ConformanceTest.java View 1 2 chunks +7 lines, -7 lines 0 comments Download
M tests/service_tests/conformance/java/DebugRunner.java View 1 1 chunk +2 lines, -2 lines 0 comments Download
M tests/service_tests/conformance/java/SnapshotRunner.java View 1 1 chunk +2 lines, -2 lines 0 comments Download
M tests/service_tests/multiple_services/multiple_services.dart View 1 1 chunk +1 line, -1 line 0 comments Download
M tests/service_tests/multiple_services/multiple_services_test.cc View 1 2 chunks +4 lines, -4 lines 0 comments Download
M tests/service_tests/multiple_services/multiple_snapshots_test.cc View 1 2 chunks +9 lines, -9 lines 0 comments Download
M tests/service_tests/performance/java/PerformanceTest.java View 1 2 chunks +7 lines, -7 lines 0 comments Download
M tests/service_tests/performance/java/SnapshotRunner.java View 1 1 chunk +2 lines, -2 lines 0 comments Download
M tests/service_tests/performance/performance_test.cc View 1 4 chunks +6 lines, -6 lines 0 comments Download
M tests/service_tests/service_tests.dart View 1 10 chunks +25 lines, -25 lines 0 comments Download
M tests/servicec/servicec_tests.dart View 1 1 chunk +1 line, -1 line 0 comments Download
M tests/snapshot_stacktrace_tests/coroutine_exception_test.dart View 1 1 chunk +1 line, -1 line 0 comments Download
M tests/snapshot_stacktrace_tests/nsm_exception_test.dart View 1 1 chunk +1 line, -1 line 0 comments Download
M tests/snapshot_stacktrace_tests/uncaught_exception_test.dart View 1 1 chunk +1 line, -1 line 0 comments Download
M tests/typed_data/typed_data_test.dart View 1 2 chunks +2 lines, -2 lines 0 comments Download
M tests/unsorted/dart2js_helper.dart View 1 1 chunk +1 line, -1 line 0 comments Download
M tests/unsorted/immutability_test.dart View 1 2 chunks +2 lines, -2 lines 0 comments Download
M tests/unsorted/messaging_benchmark_test.dart View 1 1 chunk +1 line, -1 line 0 comments Download
M tests/unsorted/messaging_drop_messages_expose_gc_test.dart View 1 1 chunk +1 line, -1 line 0 comments Download
M tests/unsorted/messaging_drop_messages_test.dart View 1 1 chunk +1 line, -1 line 0 comments Download
M tests/unsorted/messaging_latency_test.dart View 1 1 chunk +1 line, -1 line 0 comments Download
M tests/unsorted/messaging_many_process_test.dart View 1 1 chunk +1 line, -1 line 0 comments Download
M tests/unsorted/messaging_many_to_single_test.dart View 1 1 chunk +1 line, -1 line 0 comments Download
M tests/unsorted/messaging_port_lifetime_expose_gc_test.dart View 1 1 chunk +1 line, -1 line 0 comments Download
M tests/unsorted/messaging_port_lifetime_test.dart View 1 1 chunk +1 line, -1 line 0 comments Download
M tests/unsorted/messaging_process_death_test.dart View 1 1 chunk +1 line, -1 line 0 comments Download
M tests/unsorted/messaging_process_die_early_gc_on_delete_test.dart View 1 1 chunk +1 line, -1 line 0 comments Download
M tests/unsorted/messaging_process_die_early_test.dart View 1 1 chunk +1 line, -1 line 0 comments Download
M tests/unsorted/messaging_program_gc_gc_on_delete_test.dart View 1 1 chunk +1 line, -1 line 0 comments Download
M tests/unsorted/messaging_program_gc_test.dart View 1 1 chunk +2 lines, -2 lines 0 comments Download
M tests/unsorted/messaging_single_receiver_test.dart View 1 1 chunk +1 line, -1 line 0 comments Download
M tests/unsorted/messaging_test.dart View 1 1 chunk +1 line, -1 line 0 comments Download
M tests/unsorted/process_current_test.dart View 1 1 chunk +1 line, -1 line 0 comments Download
M tests/unsorted/process_divide_test.dart View 1 1 chunk +1 line, -1 line 0 comments Download
M tests/unsorted/process_exit_test.dart View 1 1 chunk +1 line, -1 line 0 comments Download
M tests/unsorted/process_linking_test.dart View 1 1 chunk +1 line, -1 line 0 comments Download
M tests/unsorted/rpc_test.dart View 1 1 chunk +1 line, -1 line 0 comments Download
M tests/unsorted/shared_immutable_data_test.dart View 1 1 chunk +1 line, -1 line 0 comments Download
M tests/unsorted/spawn_argument_test.dart View 1 1 chunk +1 line, -1 line 0 comments Download
M tests/unsorted/spawn_empty_test.dart View 1 1 chunk +1 line, -1 line 0 comments Download
M tests/unsorted/spawn_fib_test.dart View 1 1 chunk +1 line, -1 line 0 comments Download
M tests/unsorted/spawn_port_argument_test.dart View 1 1 chunk +1 line, -1 line 0 comments Download
M tests/unsorted/spawn_process_yield_negative_test.dart View 1 1 chunk +1 line, -1 line 0 comments Download
M tests/unsorted/spawn_process_yield_test.dart View 1 1 chunk +1 line, -1 line 0 comments Download
M tests/unsorted/spawn_test.dart View 1 1 chunk +1 line, -1 line 0 comments Download
M tests/unsorted/static_ffi_test.dart View 1 1 chunk +1 line, -1 line 0 comments Download
M tests/unsorted/unsorted.status View 1 2 chunks +5 lines, -5 lines 0 comments Download
M tests/version_tests/version_tests.dart View 1 1 chunk +4 lines, -4 lines 0 comments Download
M third_party/bin/README.md View 1 1 chunk +1 line, -1 line 0 comments Download
M third_party/clang/README View 1 1 chunk +1 line, -1 line 0 comments Download
M third_party/double-conversion/src/double-conversion.cc View 1 2 chunks +2 lines, -2 lines 0 comments Download
M third_party/lk/README View 1 1 chunk +4 lines, -4 lines 0 comments Download
A + third_party/lk/dartino/app/dartino-fixed/fletch_runner.c View 1 3 chunks +27 lines, -27 lines 0 comments Download
A + third_party/lk/dartino/app/dartino-fixed/missing.c View 1 0 chunks +-1 lines, --1 lines 0 comments Download
A third_party/lk/dartino/app/dartino-fixed/rules.mk View 1 1 chunk +39 lines, -0 lines 0 comments Download
A + third_party/lk/dartino/app/dartino/fletch_runner.c View 1 5 chunks +32 lines, -32 lines 0 comments Download
A + third_party/lk/dartino/app/dartino/missing.c View 1 0 chunks +-1 lines, --1 lines 0 comments Download
A third_party/lk/dartino/app/dartino/rules.mk View 1 1 chunk +39 lines, -0 lines 0 comments Download
A + third_party/lk/dartino/project/add-dartino-snapshot-section.ld View 1 1 chunk +2 lines, -2 lines 0 comments Download
A + third_party/lk/dartino/project/qemu-virt-dartino.mk View 1 1 chunk +2 lines, -2 lines 0 comments Download
A + third_party/lk/dartino/project/qemu-virt-fixed-snapshot.mk View 1 1 chunk +4 lines, -4 lines 0 comments Download
A + third_party/lk/dartino/project/stm32746g-eval2-dartino.mk View 1 1 chunk +3 lines, -3 lines 0 comments Download
A + third_party/lk/dartino/project/stm32f746g-disco-baseline.mk View 1 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/lk/dartino/project/stm32f746g-disco-dartino.mk View 1 1 chunk +3 lines, -3 lines 0 comments Download
A + third_party/lk/dartino/project/stm32f746g-disco-fixed-snapshot.mk View 1 1 chunk +4 lines, -4 lines 0 comments Download
D third_party/lk/fletch/app/fletch-fixed/fletch_runner.c View 1 1 chunk +0 lines, -100 lines 0 comments Download
D third_party/lk/fletch/app/fletch-fixed/missing.c View 1 1 chunk +0 lines, -85 lines 0 comments Download
D third_party/lk/fletch/app/fletch-fixed/rules.mk View 1 1 chunk +0 lines, -39 lines 0 comments Download
D third_party/lk/fletch/app/fletch/fletch_runner.c View 1 1 chunk +0 lines, -143 lines 0 comments Download
D third_party/lk/fletch/app/fletch/missing.c View 1 1 chunk +0 lines, -85 lines 0 comments Download
D third_party/lk/fletch/app/fletch/rules.mk View 1 1 chunk +0 lines, -39 lines 0 comments Download
D third_party/lk/fletch/project/add-fletch-snapshot-section.ld View 1 1 chunk +0 lines, -9 lines 0 comments Download
D third_party/lk/fletch/project/qemu-virt-fixed-snapshot.mk View 1 1 chunk +0 lines, -23 lines 0 comments Download
D third_party/lk/fletch/project/qemu-virt-fletch.mk View 1 1 chunk +0 lines, -23 lines 0 comments Download
D third_party/lk/fletch/project/stm32746g-eval2-fletch.mk View 1 1 chunk +0 lines, -14 lines 0 comments Download
D third_party/lk/fletch/project/stm32f746g-disco-baseline.mk View 1 1 chunk +0 lines, -11 lines 0 comments Download
D third_party/lk/fletch/project/stm32f746g-disco-fixed-snapshot.mk View 1 1 chunk +0 lines, -16 lines 0 comments Download
D third_party/lk/fletch/project/stm32f746g-disco-fletch.mk View 1 1 chunk +0 lines, -14 lines 0 comments Download
M third_party/lk/lk_inc.mk View 1 2 chunks +2 lines, -2 lines 0 comments Download
M third_party/yasm/README.google View 1 1 chunk +1 line, -1 line 0 comments Download
M tools/VERSION View 1 1 chunk +1 line, -1 line 0 comments Download
M tools/android_build/README View 1 1 chunk +1 line, -1 line 0 comments Download
M tools/android_build/jni/Android.mk View 1 3 chunks +14 lines, -14 lines 0 comments Download
M tools/benchmarking_files View 1 1 chunk +2 lines, -2 lines 0 comments Download
A + tools/bots/dartino_namer.py View 1 2 chunks +3 lines, -3 lines 0 comments Download
M tools/bots/fletch.py View 1 23 chunks +68 lines, -68 lines 0 comments Download
D tools/bots/fletch_namer.py View 1 1 chunk +0 lines, -74 lines 0 comments Download
A + tools/bots/sdk_dartino_patched.py View 1 3 chunks +4 lines, -4 lines 0 comments Download
D tools/bots/sdk_fletch_patched.py View 1 1 chunk +0 lines, -67 lines 0 comments Download
M tools/bundle_sdk.py View 1 14 chunks +24 lines, -24 lines 0 comments Download
M tools/cc_wrapper.py View 1 4 chunks +18 lines, -18 lines 0 comments Download
M tools/clang_update.py View 1 1 chunk +2 lines, -2 lines 0 comments Download
M tools/create_debian_packages.py View 1 2 chunks +3 lines, -3 lines 0 comments Download
M tools/create_tarball.py View 1 5 chunks +12 lines, -12 lines 0 comments Download
M tools/cxx_wrapper.py View 1 4 chunks +21 lines, -21 lines 0 comments Download
A + tools/dartinoc_blaze.dart View 1 7 chunks +15 lines, -15 lines 0 comments Download
M tools/docs_html/head.html View 1 2 chunks +6 lines, -6 lines 0 comments Download
D tools/fletchc_blaze.dart View 1 1 chunk +0 lines, -132 lines 0 comments Download
M tools/generate_version_cc.py View 1 1 chunk +2 lines, -2 lines 0 comments Download
M tools/gyp-windows.py View 1 1 chunk +6 lines, -6 lines 0 comments Download
M tools/immic/lib/src/plugins/java.dart View 1 7 chunks +10 lines, -10 lines 0 comments Download
M tools/immic/lib/src/resources/java/immi/ImmiRoot.java View 1 1 chunk +3 lines, -3 lines 0 comments Download
M tools/immic/lib/src/resources/java/immi/ImmiService.java View 1 1 chunk +4 lines, -4 lines 0 comments Download
M tools/immic/lib/src/resources/java/immi/ListPatch.java View 1 1 chunk +5 lines, -5 lines 0 comments Download
M tools/linux_dist_support/debian/dartino-agent.links View 1 1 chunk +1 line, -1 line 0 comments Download
M tools/linux_dist_support/debian/rules View 1 2 chunks +3 lines, -3 lines 0 comments Download
M tools/lk/embed_program_in_binary.sh View 1 5 chunks +16 lines, -16 lines 0 comments Download
M tools/lk/run_snapshot_lk.sh View 1 1 chunk +1 line, -1 line 0 comments Download
M tools/lk/run_snapshot_lk_qemu.sh View 1 3 chunks +4 lines, -4 lines 0 comments Download
M tools/persistent_process_info.sh View 1 3 chunks +11 lines, -11 lines 0 comments Download
M tools/promote.py View 1 3 chunks +8 lines, -8 lines 0 comments Download
M tools/raspberry-pi2/prepare-image.sh View 1 6 chunks +20 lines, -20 lines 0 comments Download
M tools/raspberry-pi2/qemufy-image.sh View 1 2 chunks +2 lines, -2 lines 0 comments Download
A + tools/raspberry-pi2/raspbian-scripts/dartino-configuration View 1 4 chunks +13 lines, -13 lines 0 comments Download
D tools/raspberry-pi2/raspbian-scripts/fletch-configuration View 1 1 chunk +0 lines, -85 lines 0 comments Download
M tools/raspberry-pi2/raspbian_prepare.py View 1 3 chunks +9 lines, -9 lines 0 comments Download
A + tools/run_dartino_agent View 1 1 chunk +9 lines, -9 lines 0 comments Download
D tools/run_fletch_agent View 1 1 chunk +0 lines, -27 lines 0 comments Download
M tools/servicec/lib/src/plugins/dart.dart View 1 1 chunk +3 lines, -3 lines 0 comments Download
M tools/servicec/lib/src/plugins/java.dart View 1 26 chunks +74 lines, -74 lines 0 comments Download
M tools/servicec/lib/src/resources/dart/struct.dart View 1 1 chunk +1 line, -1 line 0 comments Download
A + tools/servicec/lib/src/resources/java/dartino/Builder.java View 1 1 chunk +1 line, -1 line 0 comments Download
A + tools/servicec/lib/src/resources/java/dartino/BuilderSegment.java View 1 1 chunk +1 line, -1 line 0 comments Download
A + tools/servicec/lib/src/resources/java/dartino/ListBuilder.java View 1 1 chunk +1 line, -1 line 0 comments Download
A + tools/servicec/lib/src/resources/java/dartino/ListReader.java View 1 1 chunk +1 line, -1 line 0 comments Download
A + tools/servicec/lib/src/resources/java/dartino/MessageBuilder.java View 1 1 chunk +1 line, -1 line 0 comments Download
A + tools/servicec/lib/src/resources/java/dartino/MessageReader.java View 1 1 chunk +1 line, -1 line 0 comments Download
A + tools/servicec/lib/src/resources/java/dartino/Reader.java View 1 1 chunk +1 line, -1 line 0 comments Download
A + tools/servicec/lib/src/resources/java/dartino/Segment.java View 1 1 chunk +1 line, -1 line 0 comments Download
D tools/servicec/lib/src/resources/java/fletch/Builder.java View 1 1 chunk +0 lines, -103 lines 0 comments Download
D tools/servicec/lib/src/resources/java/fletch/BuilderSegment.java View 1 1 chunk +0 lines, -38 lines 0 comments Download
D tools/servicec/lib/src/resources/java/fletch/ListBuilder.java View 1 1 chunk +0 lines, -17 lines 0 comments Download
D tools/servicec/lib/src/resources/java/fletch/ListReader.java View 1 1 chunk +0 lines, -17 lines 0 comments Download
D tools/servicec/lib/src/resources/java/fletch/MessageBuilder.java View 1 1 chunk +0 lines, -51 lines 0 comments Download
D tools/servicec/lib/src/resources/java/fletch/MessageReader.java View 1 1 chunk +0 lines, -20 lines 0 comments Download
D tools/servicec/lib/src/resources/java/fletch/Reader.java View 1 1 chunk +0 lines, -96 lines 0 comments Download
D tools/servicec/lib/src/resources/java/fletch/Segment.java View 1 1 chunk +0 lines, -46 lines 0 comments Download
M tools/spawn_vm_and_attach.sh View 1 3 chunks +11 lines, -11 lines 0 comments Download
M tools/stm/one-stm-lib.ar View 1 1 chunk +4 lines, -4 lines 0 comments Download
M tools/stm/one-stm-lib.sh View 1 1 chunk +2 lines, -2 lines 0 comments Download
M tools/test.dart View 1 5 chunks +12 lines, -12 lines 0 comments Download
M tools/testing/dart/compiler_configuration.dart View 1 5 chunks +15 lines, -15 lines 0 comments Download
A + tools/testing/dart/dartino_session_command.dart View 1 22 chunks +79 lines, -79 lines 0 comments Download
A + tools/testing/dart/dartino_test_suite.dart View 1 11 chunks +31 lines, -31 lines 0 comments Download
A + tools/testing/dart/dartino_warnings_suite.dart View 1 5 chunks +10 lines, -10 lines 0 comments Download
M tools/testing/dart/decode_exit_code.dart View 1 1 chunk +1 line, -1 line 0 comments Download
D tools/testing/dart/fletch_session_command.dart View 1 1 chunk +0 lines, -688 lines 0 comments Download
D tools/testing/dart/fletch_test_suite.dart View 1 1 chunk +0 lines, -525 lines 0 comments Download
D tools/testing/dart/fletch_warnings_suite.dart View 1 1 chunk +0 lines, -138 lines 0 comments Download
M tools/testing/dart/runtime_configuration.dart View 1 7 chunks +31 lines, -31 lines 0 comments Download
M tools/testing/dart/test_options.dart View 1 7 chunks +18 lines, -18 lines 0 comments Download
M tools/testing/dart/test_runner.dart View 1 3 chunks +10 lines, -10 lines 0 comments Download
M tools/testing/dart/test_suite.dart View 1 8 chunks +27 lines, -27 lines 0 comments Download
M tools/vs_dependency/README.google View 1 1 chunk +1 line, -1 line 0 comments Download
M tools/vs_dependency/vs_toolchain.py View 1 1 chunk +2 lines, -2 lines 0 comments Download
M windows_targets.gypi View 1 1 chunk +2 lines, -2 lines 0 comments Download

Messages

Total messages: 8 (3 generated)
ricow1
4 years, 10 months ago (2016-02-03 11:08:14 UTC) #3
Mads Ager (google)
rubberstamp lgtm
4 years, 10 months ago (2016-02-03 11:13:27 UTC) #4
Søren Gjesse
LGTM, thanks! (only reviewed selected sections) https://codereview.chromium.org/1659163007/diff/1/DEPS File DEPS (right): https://codereview.chromium.org/1659163007/diff/1/DEPS#newcode26 DEPS:26: # 1. to ...
4 years, 10 months ago (2016-02-03 12:06:54 UTC) #5
ricow1
Committed patchset #1 (id:1) manually as 4c86cb1724a704917a0916b1457495d37b1990d1.
4 years, 10 months ago (2016-02-03 12:28:20 UTC) #7
ricow1
4 years, 10 months ago (2016-02-03 12:29:19 UTC) #8
Message was sent while issue was closed.
https://codereview.chromium.org/1659163007/diff/1/DEPS
File DEPS (right):

https://codereview.chromium.org/1659163007/diff/1/DEPS#newcode26
DEPS:26: # 1. to use a commit on the branch "_temporary_dartino_patches".
On 2016/02/03 12:06:54, Søren Gjesse wrote:
> I assume you will rename this Git branch.

yes

https://codereview.chromium.org/1659163007/diff/1/pkg/dartino_compiler/lib/da...
File pkg/dartino_compiler/lib/dartino_compiler.dart (right):

https://codereview.chromium.org/1659163007/diff/1/pkg/dartino_compiler/lib/da...
pkg/dartino_compiler/lib/dartino_compiler.dart:323: //
".../dartino-repo/dartino/out/$CONFIGURATION/dart", which means that the
On 2016/02/03 12:06:54, Søren Gjesse wrote:
> dartino-repo/dartino should br dartino-repo/sdk (x4)

Done.

https://codereview.chromium.org/1659163007/diff/1/pkg/dartino_compiler/lib/sr...
File pkg/dartino_compiler/lib/src/hub/hub_main.dart (right):

https://codereview.chromium.org/1659163007/diff/1/pkg/dartino_compiler/lib/sr...
pkg/dartino_compiler/lib/src/hub/hub_main.dart:686: // Forward commands between
the C++ dartino client [clientConnection], and the
On 2016/02/03 12:06:54, Søren Gjesse wrote:
> Long line.

Done.

https://codereview.chromium.org/1659163007/diff/1/pkg/file/lib/file.dart
File pkg/file/lib/file.dart (right):

https://codereview.chromium.org/1659163007/diff/1/pkg/file/lib/file.dart#newc...
pkg/file/lib/file.dart:80: * This is especially useful in conjunction with
`dart:dartino.ffi`. However it
On 2016/02/03 12:06:54, Søren Gjesse wrote:
> Long line.

Done.

https://codereview.chromium.org/1659163007/diff/1/pkg/file/lib/file.dart#newc...
pkg/file/lib/file.dart:81: * should be used with care, as the `File` object
assumes full control over the
On 2016/02/03 12:06:54, Søren Gjesse wrote:
> Ditto.

Done.

Powered by Google App Engine
This is Rietveld 408576698