API-CHANGES.txt 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029
  1. 0.25.1:
  2. + Collection >>
  3. + copyEmpty
  4. + shortenedPrintString
  5. 0.25.0:
  6. * Deprecate Behavior >> javascriptConstructor(:)
  7. * Deprecate ProtoObject >> instVarAt:(put:)
  8. * Lots of changes in Compiler.
  9. * Added Teachable class.
  10. + Array >>
  11. + allIn:
  12. + Behavior >>
  13. + alternateConstructorViaSelector:
  14. + applySuperConstructorOn:withArguments:
  15. + beJavaScriptSubclassOf:
  16. + javaScriptConstructor
  17. + javaScriptConstructor:
  18. + superPrototype
  19. + BlockClosure >>
  20. + tryIfTrue:catch:
  21. + ProtoObject >>
  22. + instVarNamed:
  23. + instVarNamed:put:
  24. + SequenceableCollection >>
  25. + copyWithFirst:
  26. + SmalltalkImage >>
  27. + isError:
  28. + try:ifTrue:catch:
  29. + amber/boot api >>
  30. + detachClass(klass)
  31. + amber/helpers exports >>
  32. + $nil
  33. - Error >>
  34. - beSmalltalkError
  35. - isSmalltalkError
  36. - JavaScriptError >>
  37. - shouldBeStubbed
  38. - wrap
  39. - MethodContext >>
  40. - stubHere
  41. - stubToAtMost:
  42. - amber/boot api >>
  43. - addElement(arraySet, el)
  44. - removeElement(arraySet, el)
  45. 0.23.2:
  46. + Platform class >>
  47. + fetch:
  48. + fetchUrl:options:
  49. + BrowserPlatform >>
  50. + fetch:
  51. + fetchUrl:options:
  52. + NodePlatform >>
  53. + fetch:
  54. + fetchUrl:options:
  55. 0.23.1:
  56. + TBehaviorDefaults >>
  57. + includingPossibleMetaDo:
  58. + Class >>
  59. + includingPossibleMetaDo:
  60. + CompiledMethod >>
  61. + origin
  62. - SmalltalkImage >>
  63. - includesKey:
  64. 0.23.0:
  65. * Namespace change: amber_core => amber/core.
  66. * amber/boot api addClass only takes 3 params; 4 param version deprecated
  67. + SmalltalkImage >>
  68. + beClean
  69. + amber/helpers exports >>
  70. + beClean
  71. + amber/boot api >>
  72. + setSlots(klass, arrayOfNames)
  73. 0.22.4:
  74. * Remove class IndexableCollection, trait TKeyValueCollection.
  75. * Merge CharacterArray class into String class
  76. * Deprecate CharacterArray class
  77. * Deprecate Collection >> copyWithAll:, #, is enough.
  78. + amber/helpers exports
  79. + loadPackages
  80. - Array >>
  81. - numericallyIndexable
  82. - Set
  83. - detect:ifNone: (pushed up to Collection)
  84. - SequenceableCollection
  85. - numericallyIndexable
  86. - String >>
  87. - numericallyIndexable
  88. 0.22.1:
  89. + BlockClosure >>
  90. + provided
  91. + Class >>
  92. + provided
  93. 0.22.0:
  94. * Deprecate Exception >> resignal. Should have been #pass.
  95. + Compiler >>
  96. + ast:forClass:protocol:
  97. + cleanCodeGenerator
  98. + codeGenerator
  99. + forClass:protocol:
  100. + Exception
  101. + outer
  102. + pass
  103. + JSObjectProxy >>
  104. + removeKey:
  105. + Number >>
  106. + ln1p
  107. + SmalltalkImage >>
  108. + postLoad
  109. - AmberBootstrapInitialization class >>
  110. - initializeClasses
  111. - ClassBuilder >>
  112. - setupClass:
  113. - Compiler >>
  114. - compileNode:forClass:package:
  115. - ProtoObject
  116. - asJSON
  117. - asJavascript
  118. - SmalltalkImage >>
  119. - packageAt:
  120. - amber/boot api >>
  121. - nextId
  122. 0.21.1:
  123. + ClassBuilder >>
  124. + class:instanceVariables:
  125. + JSObjectProxy class >>
  126. + null
  127. + undefined
  128. - ClassBuilder >>
  129. - basicClass:instanceVariableNames:
  130. 0.21.0:
  131. * Deprecate SmalltalkImage >> existsJsGlobal:
  132. + Number >>
  133. + bitAnd:
  134. + bitNot
  135. + bitOr:
  136. + bitXor:
  137. + printStringBase:
  138. + Platform class >>
  139. + includesGlobal:
  140. 0.20.0:
  141. * Internal kernel fields naming changes.
  142. + amber/boot api >>
  143. + traitsOrClasses
  144. - SmalltalkImage >>
  145. - legacyGlobalJsVariables
  146. - amber/boot >>
  147. - nil
  148. - dnu
  149. - amber/boot api >>
  150. - classes
  151. 0.19.1:
  152. * Deprecate amber/boot api nextId, prop globalJsVariables.
  153. * Deprecate ProtoObject >> identityHash.
  154. * Deprecate SmalltalkImage >> packageAt: in favour of explicit #packageAt:if{Absent,Present}:.
  155. + AmberBootstrapInitialization class >>
  156. + run
  157. + initializeClasses
  158. + organizeClasses
  159. + organizeMethods
  160. + Behavior >>
  161. + basicOrganization
  162. + basicOrganization:
  163. + ClassOrganizer >>
  164. + theClass
  165. + ClassOrganizer class >>
  166. + on:
  167. + Compiler class >>
  168. + eval:
  169. + JavaScriptException >>
  170. + shouldBeStubbed
  171. + wrap
  172. + Message class >>
  173. + selector:arguments:notUnderstoodBy:
  174. + MethodContext >>
  175. + stubHere
  176. + stubToAtMost:
  177. + NonBooleanReceiver class >>
  178. + signalOn:
  179. + Package >>
  180. + evalBlock
  181. + evalBlock:
  182. + Package class >>
  183. + named:javaScriptDescriptor:
  184. + SmalltalkImage >>
  185. + packageDictionary
  186. + packageAt:ifPresent:
  187. + TBehaviorProvider >>
  188. + methodOrganizationEnter:andLeave:
  189. + TMasterBehavior >>
  190. + definedMethods
  191. + enterOrganization
  192. + leaveOrganization
  193. + Trait >>
  194. + basicOrganization
  195. + basicOrganization:
  196. + UndefinedObject >>
  197. + ==
  198. + Number >>
  199. + min:max:
  200. + degreesToRadians
  201. + radiansToDegrees
  202. + arcTan:
  203. + between:and:
  204. + Number class >>
  205. + radiansPerDegree
  206. + Point >>
  207. + dotProduct:
  208. + normal
  209. + angle
  210. + normalized
  211. + r
  212. + corner:
  213. + extent:
  214. + rectangle:
  215. + Rectangle >>
  216. + =
  217. + corner
  218. + origin
  219. + containsPoint:
  220. + containsRect:
  221. + printOn:
  222. + Rectangle class >>
  223. + origin:corner:
  224. + origin:extent:
  225. + point:point:
  226. - Package >>
  227. - basicName:
  228. - basicImports
  229. - ProtoObject >>
  230. - isSameInstanceAs:
  231. - ObjectTest >>
  232. - testIdentityHash
  233. - amber/boot api >>
  234. - reservedWords (with the hope no one uses it directly)
  235. 0.19.0:
  236. * Remove class Thenable, add trait TThenable.
  237. * Behavior / Trait hierarchy uses traits.
  238. + NativeFunction class >>
  239. + isNativeFunction:
  240. + IRInstructions >>
  241. + isSelf
  242. + isSuper
  243. + IRVariable >>
  244. + isSelf
  245. + isSuper
  246. + ScopeVar >>
  247. + isSelf
  248. + isSuper
  249. + PseudoVar >>
  250. + isSelf
  251. + isSuper
  252. +UndefinedObject >>
  253. + identityHash
  254. + value
  255. + amber/boot >>
  256. + nilAsValue
  257. - IRSend >>
  258. - isSuperSend
  259. 0.18.3:
  260. * Move {add,remove}Element from Array.prototype to kernel API.
  261. * New superclass of Behavior named BehaviorBody, pushed up some methods.
  262. * Represents named holder of methods; hierarchy and instantiation left to Behavior.
  263. * Add class Trait as subclass of BehaviorBody.
  264. * Add class TraitTransformation.
  265. * Deprecate #asJSON in favour of #asJavaScriptObject.
  266. * Deprecate #asJavascript in favour of #asJavaScriptSource.
  267. + BehaviorBody >>
  268. + setTraitComposition:
  269. + traitCompositionDefinition
  270. + traitUsers
  271. + allSubclassesDo:
  272. + superclass
  273. + Trait >>
  274. + allInstanceVariableNames
  275. + allSubclassesDo:
  276. + asJavascript
  277. + asTraitComposition
  278. + category
  279. + classTag
  280. + definition
  281. + package
  282. + superclass
  283. + theMetaClass
  284. + theNonMetaClass
  285. + exportBehaviorDefinitionTo:using:
  286. + traitUsers
  287. + package:
  288. + Trait class >>
  289. + named:package:
  290. + named:uses:package:
  291. + TraitTransformation >>
  292. + -
  293. + @
  294. + addAliases:
  295. + addExclusions:
  296. + aliases
  297. + asJSON
  298. + asJavascript
  299. + asTraitComposition
  300. + asTraitTransformation
  301. + definition
  302. + exclusions
  303. + initialize
  304. + postCopy
  305. + trait
  306. + trait:
  307. + Collection >>
  308. + copyWithout:
  309. + SequenceableCollection >>
  310. + reverseDo:
  311. + Array >>
  312. + asTraitComposition
  313. + amber/boot api >>
  314. + addElement
  315. + removeElement
  316. + wrapJavaScript
  317. + CharacterArray >>
  318. + asSymbolPrintOn:
  319. + symbolPrintString
  320. + String >>
  321. + isSelector
  322. + StringStream >>
  323. + print:
  324. + printSymbol:
  325. + Package >>
  326. + traitCompositions
  327. + Class >>
  328. + subClass:
  329. + subClass:uses:
  330. + subClass:uses:instanceVariables:
  331. + subClass:uses:instanceVariables:category:
  332. + subClass:uses:instanceVariables:classVariables:poolDictionaries:category:
  333. + subClass:uses:instanceVariables:package:
  334. + UndefinedObject >>
  335. + subClass:
  336. + subClass:uses:
  337. + subClass:uses:instanceVariables:
  338. + subClass:uses:instanceVariables:category:
  339. + subClass:uses:instanceVariables:classVariables:poolDictionaries:category:
  340. + subClass:uses:instanceVariables:package:
  341. + Metaclass >>
  342. + uses:instanceVariableNames:
  343. - Association >>
  344. - importsString
  345. - String >>
  346. - importsString
  347. - AbstractExporter
  348. - classNameFor:
  349. - Exporter >>
  350. - jsClassNameFor:
  351. 0.18.2:
  352. * Add Platform-DOM package with DOM-related stuff.
  353. * Platform-DOM not loaded by default. Packages that will use it will import it.
  354. + PlatformDom class >>
  355. + isFeasible
  356. + isDomNode:
  357. + newCustomEvent:detail:
  358. + toArray:
  359. + CharacterArray >>
  360. + asDomNode
  361. + Collection >>
  362. + asDomNode
  363. + JSObjectProxy >>
  364. + asDomNode
  365. + String >>
  366. + htmlTextContent
  367. 0.18.1:
  368. + ASTNode >>
  369. + withTail:
  370. - SendNode >>
  371. - valueWithReceiver:
  372. 0.18.0:
  373. * Remove class RethrowErrorHandler (hack for cli before 0.12.3).
  374. * Add Kernel-Dag package with abstract DAG-node and DAG-node visitor.
  375. * Some internal API changes in Compiler-* (including the move to DAG-node).
  376. - Object >>
  377. - throw:
  378. 0.17.0:
  379. * Remove classes InterfacingObject, PlatformInterface.
  380. * Deprecate $boot.nil (use $boot.nilAsReceiver).
  381. + amber/boot >>
  382. + nilAsReceiver
  383. - NativeFunction class >>
  384. - constructor:
  385. - constructor:value:
  386. - constructor:value:value:
  387. - constructor:value:value:value:
  388. 0.16.1:
  389. * Deprecate $boot.dnu (use $boot.nilAsClass).
  390. + amber/boot >>
  391. + nilAsClass
  392. 0.16.0:
  393. * Deprecate ClassBuilder >> setupClass:
  394. * $core.initialize now returns a Promise
  395. * $core.addClass now returns the class
  396. + amber/boot api >>
  397. + send2
  398. + traverseClassTree
  399. + Promise class >>
  400. + new
  401. - amber/boot api >>
  402. - wrapClassName
  403. - send
  404. - allSubclasses
  405. - AbstractCodeGenerator >>
  406. - classNameFor:
  407. 0.15.1:
  408. * Thenable class added
  409. * Promise class added, wraps JS Promise, subclass of Thenable
  410. + Thenable >>
  411. + catch:
  412. + on:do:
  413. + on:do:catch:
  414. + then:
  415. + then:catch:
  416. + then:on:do:
  417. + then:on:do:catch:
  418. + JSObjectProxy >>
  419. + catch:
  420. + on:do:
  421. + on:do:catch:
  422. + then:
  423. + then:catch:
  424. + then:on:do:
  425. + then:on:do:catch:
  426. + amber/boot api >>
  427. + seamless
  428. + Promise class >>
  429. + new:
  430. + forBlock:
  431. + value:
  432. + signal:
  433. + all:
  434. + any:
  435. 0.14.18:
  436. * Some internal API changes in Compiler-*.
  437. 0.14.14:
  438. * InterfacingObject >> ajax: deprecated
  439. * PlatformInterface class deprecated
  440. * Class BrowserInterface removed
  441. * Class Terminal, BrowserTerminal added
  442. * Class Platform, BrowserPlatform added
  443. + Environment >>
  444. + renamePackage:to:
  445. + Platform class >>
  446. + globals
  447. + newXhr
  448. + Terminal class >>
  449. + alert:
  450. + confirm:
  451. + prompt:
  452. + prompt:default:
  453. SmalltalkImage >>
  454. + existsJsGlobal:
  455. - PlatformInterface class >>
  456. - initialize
  457. - setWorker:
  458. 0.14.12:
  459. + JSObjectProxy >>
  460. + putOn:
  461. + ProtoStream >>
  462. + nextPutJSObject:
  463. 0.14.11:
  464. * Basic streaming protocol extracted from Stream to ProtoStream
  465. + Object >>
  466. + in:
  467. + JSObjectProxy >>
  468. + in:
  469. 0.14.10:
  470. + JSObjectProxy class >>
  471. + addObjectVariablesTo:ofProxy:
  472. + compareJSObjectOfProxy:withProxy:
  473. + forwardMessage:withArguments:ofProxy:
  474. + jsObject:ofProxy:
  475. + lookupProperty:ofProxy:
  476. - JSObjectProxy >>
  477. - jsObject:
  478. - lookupProperty:
  479. - compareJSObjectWith:
  480. - addObjectVariablesTo:
  481. - forwardMessage:withArguments:
  482. 0.14.4:
  483. + AmdExporter >>
  484. + importsForOutput:
  485. + AbstractCodeGenerator >>
  486. + currentPackage
  487. + currentPackage:
  488. + Compiler >>
  489. + currentPackage
  490. + currentPackage:
  491. + compile:forClass:protocol:
  492. + compileNode:forClass:package:
  493. + SemanticAnalyzer >>
  494. + thePackage
  495. + thePackage:
  496. + isVariableUndefined:inPackage:
  497. - Compiler >>
  498. - compile:
  499. - compile:forClass:
  500. - compileExpression:
  501. - SemanticAnalyzer >>
  502. - isVariableGloabllyUndefined:
  503. - Behavior >>
  504. - compile:
  505. 0.14.3:
  506. * #heliosClass is now #classTag
  507. + Compiler >>
  508. + eval:forPackage:
  509. + Behavior >>
  510. + packageOfProtocol:
  511. + Exporter >>
  512. + exportPackageContextOf:on:
  513. + exportPackageImportsOf:on:
  514. + Package >>
  515. + basicImports
  516. + imports
  517. + imports:
  518. + importsDefinition
  519. + importsFromJson:
  520. + importsAsJson
  521. + sortedImportsAsArray
  522. + validateImports:
  523. + Package class >>
  524. + named:imports:transport:
  525. + Association >>
  526. + importsString
  527. + String >>
  528. + importsString
  529. + ProtoObject >>
  530. + ifNil:
  531. + ifNil:ifNotNil:
  532. + ifNotNil:
  533. + ifNotNil:ifNil:
  534. + isNil
  535. + notNil
  536. - Object >>
  537. - ifNil:
  538. - ifNil:ifNotNil:
  539. - ifNotNil:
  540. - ifNotNil:ifNil:
  541. - isNil
  542. - notNil
  543. 0.14.1:
  544. * NativeFunction class >> constructor:[value:...] deprecated
  545. + NativeFunction class >>
  546. + constructorNamed:
  547. + constructorNamed:value:
  548. + constructorNamed:value:value:
  549. + constructorNamed:value:value:value:
  550. + constructorOf:
  551. + constructorOf:value:
  552. + constructorOf:value:value:
  553. + constructorOf:value:value:value:
  554. + functionNamed:
  555. + functionNamed:value:
  556. + functionNamed:value:value:
  557. + functionNamed:value:value:value:
  558. + functionNamed:valueWithArgs:
  559. + functionOf:
  560. + functionOf:value:
  561. + functionOf:value:value:
  562. + functionOf:value:value:value:
  563. + functionOf:valueWithArgs:
  564. + methodOf:this:
  565. + methodOf:this:value:
  566. + methodOf:this:value:value:
  567. + methodOf:this:value:value:value:
  568. + methodOf:this:valueWithArgs:
  569. + SmalltalkImage >>
  570. + optOut:
  571. + cancelOptOut:
  572. 0.14.0:
  573. + Object >>
  574. + asJQuery
  575. + asJQueryInContext:
  576. + BlockClosure >>
  577. + asJQuery
  578. + asJQueryInContext:
  579. - AnnouncementSubscription >>
  580. - block
  581. - block:
  582. - Collection >>
  583. - contains:
  584. - String >>
  585. - asSelector
  586. - asJavaScriptSelector
  587. - SmalltalkImage >>
  588. - at:
  589. - at:ifAbsent:
  590. - at:put:
  591. - current
  592. - vm
  593. - createPackage:properties:
  594. - MethodContext >>
  595. - temps
  596. - Object >>
  597. - try:catch:
  598. 0.13.2:
  599. + SourceArea class >>
  600. + codeMirror
  601. 0.13.1:
  602. * String >> asSelector is now String >> asJavaScriptMethodName
  603. * String >> asJavaScriptSelector is now String >> asJavaScriptPropertyName
  604. * smalltalk.selector is now smalltalk.st2js
  605. * smalltalk.convertSelector is now smalltalk.js2st
  606. * Collection >> ifEmpty:ifNotEmpty: family passes self to ifNotEmpty: block
  607. * Smalltalk vm is now Smalltalk core
  608. * boot.js's .vm is now .api
  609. * amber load sets' .vm is now .api
  610. * Internal variables smalltalk/globals/_st are now $core/$globals/$recv
  611. + smalltalk.
  612. + accessJavaScript
  613. + Object >>
  614. + postMessageTo:
  615. + postMessageTo:origin:
  616. + Class >>
  617. + heliosClass
  618. + SmalltalkImage >>
  619. + core
  620. + amber/boot
  621. + api
  622. + amber/{devel,deploy,lang} exports
  623. + api
  624. - ProtoObject class >>
  625. - heliosClass
  626. - Object class >>
  627. - heliosClass
  628. - amber/boot
  629. - vm
  630. 0.12.6:
  631. + String >>
  632. + value:
  633. + ProtocolAnnouncement >>
  634. + package
  635. + Behavior >>
  636. + isTestClass
  637. + Package >>
  638. + isTestPackage
  639. + amber/{devel,deploy,lang} exports
  640. + nil
  641. + amber/helpers exports
  642. + nil
  643. 0.12.4:
  644. * Package Canvas renamed to Web
  645. * Object >> try:catch: deprecated in favour of BlockClosure >> tryCatch:
  646. + Announcer >>
  647. + on:do:for:
  648. + Node >>
  649. + navigationNodeAt:ifAbsent:
  650. + BlockClosure >>
  651. + tryCatch:
  652. + Environment >>
  653. + evaluate:for:
  654. + AmberCli >>
  655. + version:
  656. + Object >>
  657. + deprecatedAPI:
  658. - Environment >>
  659. - eval:on:
  660. - evaluateString:on:
  661. 0.12.3:
  662. * Package Import-Export renamed to Kernel-ImportExport
  663. * A dozen of methods moved from Object to ProtoObject
  664. * HashedCollection >> at:ifAbsentPut: pushed up to SequenceableCollection
  665. * HashedCollection >> , is now allowed (removed shouldNotImplement)
  666. * HashedCollection and Dictionary both subclasses of AssociativeCollection
  667. * Smalltalk class moved to SmalltalkImage class, Smalltalk is now global var
  668. * Smalltalk current deprecated in favour of Smalltalk
  669. * Smalltalk at:[put:] deprecated in favour of Smalltalk globals at:[put:]
  670. * <smalltalk.ClassName> deprecated in favour of <globals.ClassName>
  671. + CompiledMethod >>
  672. + defaultProtocol
  673. + Behavior >>
  674. + compile:protocol:
  675. + removeProtocolIfEmpty:
  676. + Package >>
  677. + load
  678. + loadFromNamespace:
  679. + Package class >>
  680. + load:
  681. + load:fromNamespace:
  682. + PackageTransport >> load
  683. + PackageHandler >> load:
  684. + AmdPackageHandler >> load:
  685. + Set >> removeAll
  686. + AssociativeCollection class
  687. + BucketStore class
  688. + SmalltalkImage >>
  689. + globals
  690. + vm
  691. + settings
  692. + Setting class
  693. + String >>
  694. + asSetting
  695. + asSettingIfAbsent:
  696. + settingValue
  697. + settingValueIfAbsent:
  698. + settingValue:
  699. + Smalltalk global variable
  700. - CompiledMethod >>
  701. - category: (use #protocol:)
  702. - defaultCategory
  703. - Behavior >> compile:category:
  704. - HTMLCanvas class >>
  705. - browserVersion
  706. - isMSIE
  707. - isMozilla
  708. - isOpera
  709. - isWebkit
  710. 0.12.2:
  711. * Collection >> contains: is deprecated in favor of anySatisfy:
  712. + Announcer >> on:doOnce:
  713. + String >>
  714. + uriEncoded
  715. + uriDecoded
  716. + uriComponentEncoded
  717. + uriComponentDecoded
  718. + Collection >>
  719. + removeAll
  720. + ifEmpty:ifNotEmpty:
  721. + ifNotEmpty:ifEmpty:
  722. + anyOne
  723. + noneSatisfy:
  724. + anySatisfy:
  725. + allSatisfy:
  726. 0.12.0:
  727. * SmalltalkMethodContext.prototype.fillBlock() takes a third 'index' parameter
  728. * Existing classes moved to new KernelInfrastructure package
  729. * ImporterExporter
  730. * are now StreamExporters
  731. * aware of AMD namespaces
  732. * support transport types and commit channels
  733. + Node >>
  734. + nextChild
  735. + method
  736. + postCopy
  737. + isCascadeNode
  738. + isLastChild
  739. + BlockNode >>
  740. + nextNode:
  741. + nextChild
  742. + SendNode >>
  743. + isCascadeSendNode
  744. + shouldBeAliased
  745. + CompiledMethod >> sendTo:arguments:
  746. + Array >>
  747. + addFirst:
  748. + removeLast
  749. + Number >>
  750. + ceiling
  751. + floor
  752. + asNumber
  753. + //
  754. + cos
  755. + sin
  756. + tan
  757. + arcCos
  758. + arcSin
  759. + arcTan
  760. + log
  761. + log:
  762. + raisedTo:
  763. + sign
  764. + **
  765. + ln
  766. + e
  767. + String class >> esc
  768. + String >>
  769. + asMutator
  770. + capitalized
  771. + isCapitalized
  772. + JSProxy >> printString
  773. + Behavior >>
  774. + ownProtocols
  775. + ownMethods
  776. + JSStream >> nextPutSendIndexFor:
  777. + InterfacingObject class
  778. + Interpreter class
  779. + DocumentFragmentTag class
  780. + AbstractExporter class
  781. + PlatformInterface class
  782. - Node >> extent
  783. - JSStream >> nextPutStatement:with:
  784. - Smalltalk.installSuperclass()
  785. - ClassReferenceNode class (now handled via VariableNode)
  786. 0.11.0:
  787. * AnnouncementSubscription use #valuable: instead of #block: (deprecated)
  788. * AbstractCodeGenerator inherits from Object, not NodeVisitor
  789. * Object>>printString
  790. * replace >>printString with >>printOn:
  791. * replace >>storeString with >>printString
  792. * PackageLoader is now PackageHandler (>>commit: >>setupPackagenamed:prefix: >>ajaxPutAt:data:
  793. * Package>>fetch: is now Package>>load:
  794. * Package>>fetch:prefix: is now Package>>load:prefix:
  795. * Queue>>front replaced by Queue>>next
  796. * Queue>>frontIfAbsent: replaced by Queue>>nextIfAbsent:
  797. * Queue>>back: replaced by Queue>>nextPut:
  798. * smalltalk.addMethod() does not use explicit JS selector
  799. * JSObjectProxy>>canForwardMessage: replaced by use of JSObjectProxy>>lookupProperty: with asJavaScriptSelector
  800. * JSObjectProxy>>forwardMessage: replaced by explicit JSObjectProxy>>forwardMessage:withArguments:
  801. * String>>asJavaScriptSelector moved to Kernel-Objects package
  802. + Object>>asString
  803. + Object>>putOn:
  804. + String>>isVowel
  805. + Collection>>putOn:
  806. + CharacterArray>>putOn:
  807. + Stream>><<
  808. + Stream>>write
  809. + SequenceableCollection>>newStream
  810. + SequenceableCollection>>readStream
  811. + SequenceableCollection>>stream
  812. + SequenceableCollection>>streamClass
  813. + SequenceableCollection>>writeStream
  814. + Collection>>isImmutable
  815. + Stream>>nextPutString:
  816. + StringStream>>nextPutString:
  817. + JSStream>>nextPutClassRefFunction:
  818. + String>>crlfSanitized
  819. + inlined Block now also responds to >>value:
  820. + Parser: split literal into runtimeLiteral and parseTimeLiteral
  821. + Parser: write #(4 #(5 6 #()) 7) as #(4 (5 6 ()) 7)
  822. + Parser: write #(#on:do: #Object) as #(on:do: Object)
  823. + Parser: Symbols for binarie selectores
  824. + Package>>commit
  825. + AIContext>>initializeLocals
  826. + ASTInterpreter>>withBlockContext:
  827. + smalltalk.allSelectors()
  828. + Object>>isCompiledMethod
  829. + Object>>isPackage
  830. + Object>>isBehavior
  831. + ClassMoved Announcemen class
  832. + Behavior>>includesBehavior:
  833. + Environment>>classes
  834. + Environment>>allSelectors
  835. + Environment>>removeProtocol:
  836. + Environment>>renameProtocol:to:in:
  837. + CompiledMethod>>protocol:
  838. + Smalltalk>>globalJsVariables
  839. + Smalltalk>>addGlobalJsVariable:
  840. + Smalltalk>>deleteGlobalJsVariable:
  841. - Object>>storeOn:
  842. - Object>>log:block:
  843. - Object>>printNl
  844. - Compiler-IR.st >>javascriptSelector
  845. - Compiler-IR.st >>nextPutVar:
  846. - Kernel-Collections.st >>asSuperSelector
  847. - Collection>>readStream
  848. - Collection>>stream
  849. - Collection>>streamClass
  850. - Collection>>writeStream
  851. - Symbol class (replaced with String)
  852. - IRInlinedNonLocalReturn class
  853. - IRInlinedSend>>nonLocalReturnInliner
  854. - IRNonLocalReturnInliner class
  855. - Package>>dependencies
  856. - Package>>dependencies:
  857. - Package>>properties
  858. - Package>>jsProperties
  859. - Package>>jsProperties:
  860. - Package>>propertiesAsJSON
  861. - Package>>propertyAt:
  862. - Package>>propertyAt:ifAbsent:
  863. - Package>>propertyAt:put:
  864. - Browser>>ajaxPutAt:data: