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

Side by Side Diff: platforms/stm/event_handler_test/src/test.dart

Issue 1649703002: Update project authors statements to Dartino (Closed) Base URL: https://github.com/dartino/sdk.git@master
Patch Set: Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright (c) 2016, the Fletch project authors. Please see the AUTHORS file 1 // Copyright (c) 2016, the Dartino project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE.md file. 3 // BSD-style license that can be found in the LICENSE.md file.
4 4
5 /// Simple test that timers and event-handlers work. 5 /// Simple test that timers and event-handlers work.
6 /// 6 ///
7 /// For now we have to run this manually. 7 /// For now we have to run this manually.
8 8
9 import "dart:fletch"; 9 import "dart:fletch";
10 import "dart:fletch.ffi"; 10 import "dart:fletch.ffi";
11 import "dart:fletch.os" hide sleep; 11 import "dart:fletch.os" hide sleep;
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
59 }); 59 });
60 // Yield to let the newly created fiber start listening. 60 // Yield to let the newly created fiber start listening.
61 Fiber.yield(); 61 Fiber.yield();
62 fibers.add(fiber); 62 fibers.add(fiber);
63 } 63 }
64 Fiber.yield(); 64 Fiber.yield();
65 fibers.add(Fiber.fork(listenPort1)); 65 fibers.add(Fiber.fork(listenPort1));
66 66
67 fibers.forEach((Fiber fiber) => fiber.join); 67 fibers.forEach((Fiber fiber) => fiber.join);
68 } 68 }
OLDNEW
« no previous file with comments | « platforms/stm/event_handler_test/src/fletch_entry.cc ('k') | platforms/stm/free_rtos_sources.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698