Posts

how can a var have a value and then be unassigned in the same console.log message?

Image
up vote 2 down vote favorite I'm probably missing something obvious, I have a value which is assigned to this.theValue . Logging this value straight away shows that this.theValue has a value. Later on this value is magically undefined. If I however log the following console.log(this, this.theValue) then the first one shows that theValue exists, but this.theValue is undefined. This is what it looks like: /*global define, window */ define([ 'competitor/show/CompetitorLabelColours', 'competitor/show/CompetitorLabelText' ], function( CompetitorLabelColours, CompetitorLabelText ) { 'use strict'; let CompetitorLabelFactory = function(parameterSet) { this.parameterSet = parameterSet; this.labeltext = new CompetitorLabelText(parameterSet); this...

宮本武蔵 (1990年のテレビドラマ)

Image
『 宮本武蔵 』(みやもとむさし)は、1990年(平成2年)1月2日の午後0時から午後11時52分までテレビ東京で放送された 12時間超ワイドドラマ (のちの新春ワイド時代劇)である。全6部。テレビ東京開局25周年記念番組。 主演は北大路欣也。原作は吉川英治の小説『宮本武蔵』。 目次 1 概要 2 スタッフ 3 キャスト 4 関連項目 概要 この節の加筆が望まれています。 第一部 「若き武芸者の黎明」 第二部 「般若坂の決闘」 第三部 「小次郎無情・燕返し開眼」 第四部 「血戦・雪の三十三間堂」 第五部 「決闘・一乗下り松」 第六部 「決闘・巌流島」 北大路は1996年に同じ時間枠、同じ塙脚本で『徳川剣豪伝 それからの武蔵』(原作:小山勝清)に主演、巌流島の決闘から死を迎えるまでの武蔵を演じ、武蔵の最期までを演じている。 また2001年にはやや合計放映時間を短縮した「新世紀ワイド時代劇」として『宮本武蔵』が同じ原作、長坂秀佳脚本、上川隆也主演でリメイクされている。 スタッフ この節の加筆が望まれています。 原作:吉川英治『宮本武蔵』 脚本:塙五郎 監督:舛田利雄(1)、江崎実生(2・5)、牧口雄二(3・4)、松尾昭典(6) 音楽:横山菁児 製作:テレビ東京、東映 キャスト この節の加筆が望まれています。 宮本武蔵:北大路欣也 お通:賀来千香子 本位田又八:田中健 朱実:伊藤かずえ 沢庵和尚:田村高廣 お甲:加賀まりこ お杉:左幸子 佐々木小次郎:村上弘明 吉岡清十郎:萩原流行 吉岡伝七郎:内藤剛志 吉岡源左衛門:守田比呂也 吉岡源二郎:武田佑介 祇園藤次:草薙良一 宍戸梅軒:小沢象 辻風典馬:岩尾正隆 小野治郎右衛門:原口剛 小幡勘兵衛:宮城幸生 鐘捲自斎:山田良樹 岩間角兵衛:滝田裕介 木村助九郎:宮内敦士 青木丹左衛門:草野大悟 青木城太郎:新井信彦 城太郎(少年時代):津田充博(現・高野八誠) 三沢伊織:雨笠利幸 柳生兵庫助:勝野洋 柳生石舟斎:今福将雄 柳生但馬守宗矩:久富惟晴 徳川...

clang 3.9 coverage link failed

Image
up vote 0 down vote favorite 1.Usage : `clang -coverage' 2.Env : "os": "linux", "env": "MATRIX_EVAL="CC=clang-3.9 && CXX=clang++-3.9"", "dist": "trusty", "group": "stable", "addons": { "apt": { "sources": [ "llvm-toolchain-trusty-3.9" ], "packages": [ "clang-3.9" ] } }, 3.Error log : /usr/bin/ld: /usr/lib/llvm-3.9/bin/../lib/clang/3.9.1/lib/linux/libclang_rt.profile-x86_64.a(GCDAProfiling.c.o): unrecognized relocation (0x2a) in section `.text.llvm_gcda_start_file' Is there anyone know how to solve this? clang code-cov...