https://github.com/angular/angular
Raw File
Tip revision: 6f4a39c337f85a63d379da349855814a623ce28e authored by vsavkin on 13 July 2015, 22:57:06 UTC
refactor(di): removed @Parent
Tip revision: 6f4a39c
perf_launch_chrome.sh
#!/bin/bash

platform=`uname`
if [[ "$platform" == 'Linux' ]]; then
  `google-chrome --js-flags="--expose-gc"`
elif [[ "$platform" == 'Darwin' ]]; then
  `/Applications/Google\ Chrome\ Canary.app/Contents/MacOS/Google\ Chrome\ Canary \
      --enable-memory-info \
      --enable-precise-memory-info \
      --enable-memory-benchmarking \
      --js-flags="--expose-gc --allow-natives-syntax" \
      --disable-web-security \
      --remote-debugging-port=9222`
fi
back to top