import org.aspectj.testing.Tester; // bart.vanhaute@cs.kuleuven.ac.be conflated jitterbug public class LocalClassClosingOverProceed { public static void main(String[] args) { new Target().method(); Tester.checkAllEvents(); } static { Tester.expectEvent("Target.method"); Tester.expectEvent("before proceed"); Tester.expectEvent("after proceed"); } } class Target { public void method() { Tester.event("Target.method"); } } aspect NamedLocalClass { /** @testcase PR#636 named local class closing over proceed() in around */ void around(): execution(void Target.method()) { //Runnable r = new Runnable () { class LocalClass { public void run() { Tester.event("before proceed"); proceed(); Tester.event("after proceed"); } }; new LocalClass().run(); //r.run(); } } Vaadin web components: https://github.com/vaadin/vaadin-corewww-data
aboutsummaryrefslogtreecommitdiffstats
path: root/ga.js
blob: 51577de2381c47872094d98ae3c11ee95bada7fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Analytics for Vaadin Elements

(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
  (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
  m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');

ga('create', 'UA-658457-6', 'auto');

function locationHashChanged() {
  if(/vaadin/.test(window.location.hostname)) {
    var pageViewUrl = (window.location.pathname + window.location.hash)
      .replace(/vaadin-elements\/latest\/(.+)\/demo/, 'components-examples/$1')
      .replace('#', '/');
    ga('send', 'pageview', pageViewUrl)
  }
}

window.onhashchange = locationHashChanged;
locationHashChanged();